- 686
- 227 402
WIBYTE
India
เข้าร่วมเมื่อ 6 ก.ค. 2020
We take young minds through the world of computer programming, inculcating in them a flair for computational thinking, a key foundational skill for the next generation.
More here - wibyte.in
More here - wibyte.in
Congratulations Adarsh Sudeep on clearing Zonal Computing Olympiad FY25
We at WiByte are proud and delighted to announce that Adarsh Sudeep has successfully cleared the Zonal Computing Olympiad (ZCO) FY25. Adarsh has been a student at WiByte for over two years, during which he has consistently demonstrated exceptional skills and creativity. Many of his projects have set benchmarks and now serve as inspiration for fellow students.
In this video, we delve into the strategies Adarsh employed to prepare for the ZCO, execute his plan effectively, and emerge among the top performers. We hope his journey motivates more students to explore this exciting path and strive for excellence in competitive programming.
We extend our heartfelt wishes to Adarsh for his next challenge: the Indian National Olympiad in Informatics (INOI). Good luck, Adarsh-the entire WiByte community is rooting for your success!
#python
In this video, we delve into the strategies Adarsh employed to prepare for the ZCO, execute his plan effectively, and emerge among the top performers. We hope his journey motivates more students to explore this exciting path and strive for excellence in competitive programming.
We extend our heartfelt wishes to Adarsh for his next challenge: the Indian National Olympiad in Informatics (INOI). Good luck, Adarsh-the entire WiByte community is rooting for your success!
#python
มุมมอง: 134
วีดีโอ
4. CALCULATOR Enhancement -- A new/different layout for the Calculator Buttons
มุมมอง 414 วันที่ผ่านมา
In this video, we use a flexible code to create a new layout for the calculator buttons. We see our flexible code in action in this process. For more details and step by step instructions, please take a look at www.wibyte.in
3. CALCULATOR Enhancement -- Placing the Operators Buttons using a for loop
มุมมอง 414 วันที่ผ่านมา
In this video, we discuss the code to place the OPERATORS buttons using a for loop. The challenge is to handle the lambda statement carefully. For more details and step by step instructions, please take a look at www.wibyte.in
2. CALCULATOR Enhancement -- Placing the Number Buttons using a for loop
มุมมอง 1814 วันที่ผ่านมา
In this video, we discuss the code to place the number buttons using a for loop. The challenge is to handle the lambda statement carefully. For more details and step by step instructions, please take a look at www.wibyte.in
1. CALCULATOR Enhancement -- Discussion on a Flexible Layout
มุมมอง 1014 วันที่ผ่านมา
In this video, we discuss the challenge of placing the CALCULATOR buttons with a flexible code. There is a need to balance code flexibility and code readability and hence we apply the loops to only two categories of buttons, the number buttons and the operator buttons. The detailed implementation of these will be seen in subsequent videos. For more details and step by step instructions, please ...
14. Fractals and Recursion: Generating Fibonacci Numbers with two recursive calls
มุมมอง 12614 วันที่ผ่านมา
We wrap up this series on 'Fractals and Recursion' by taking the example of generating Fibonacci numbers. This uses two recursive calls. We understand this code in detail and also see how in fact this is similar to the tree code which also used two recursive calls! Other videos in the series are as follows - 1. Introduction and Learning Objectives - th-cam.com/video/8sWSLS1jBUg/w-d-xo.html 2. C...
13. Fractals and Recursion: Code for drawing the complete tree with two recursive calls
มุมมอง 214 วันที่ผ่านมา
In this video complete the drawing of the tree with a second recursive call that draws the left branch of the tree. It is quite magical to look at the turtle do all the work it does with just one additional recursion call. We also look at some variations and patterns created with different values for angles, and different left and right branch lengths etc. Other videos in the series are as foll...
12. Fractals and Recursion: Re-aligning and bringing the turtle back to draw the left branch
มุมมอง 114 วันที่ผ่านมา
In this video we take a detailed, step by step look at how we re-align and bring the turtle back to draw the left branch of the tree. This is the trickiest part of the code to draw the tree pattern and hence we look at it carefully, understanding every step in detail. Other videos in the series are as follows - 1. Introduction and Learning Objectives - th-cam.com/video/8sWSLS1jBUg/w-d-xo.html 2...
11. Fractals and Recursion: Recursion to draw the right side branch of the tree pattern
มุมมอง 214 วันที่ผ่านมา
In this video we use a single recursive call within a simple function to draw the right side branch of the tree. Other videos in the series are as follows - 1. Introduction and Learning Objectives - th-cam.com/video/8sWSLS1jBUg/w-d-xo.html 2. Creating our first recursive function call - th-cam.com/video/jDPuL7w_AoQ/w-d-xo.html 3. Analysis of how the recursive function to draw squares works - th...
10. Fractals and Recursion: Analysis of the Tree Pattern and its similarity to the Squares pattern.
มุมมอง 414 วันที่ผ่านมา
In this video we take a deeper look at the Tree pattern and recognize its similarity with the squares pattern. This leads us to an approach that we can use to generate the Tree pattern using a simple function but by calling the recursive function twice, just like we had done for the squares pattern. Other videos in the series are as follows - 1. Introduction and Learning Objectives - th-cam.com...
9. Fractals and Recursion: An introduction to the tree fractal pattern
มุมมอง 814 วันที่ผ่านมา
In this video we introduce the second fractal pattern that we will draw A Tree pattern. At the first look, the tree pattern looks very different from the square pattern, but in fact there is a deep similarity. Other videos in the series are as follows - 1. Introduction and Learning Objectives - th-cam.com/video/8sWSLS1jBUg/w-d-xo.html 2. Creating our first recursive function call - th-cam.com/v...
8. Fractals and Recursion: How do the two successive recursive calls create an intricate pattern?
มุมมอง 114 วันที่ผ่านมา
In this video we analyze how the two recursive calls in the squares function created the intricate patterns that we saw earlier. We look at both cases where we draw before the recursive calls and where we make the recursive call before drawing. Other videos in the series are as follows - 1. Introduction and Learning Objectives - th-cam.com/video/8sWSLS1jBUg/w-d-xo.html 2. Creating our first rec...
7. Fractals and Recursion: The magic created by 2 or 3 recursive calls in the squares function
14 วันที่ผ่านมา
In this video we see how we suddenly end up with extremely interesting an intricate patterns by increasing the number of times we make the recursive calls inside the function. Other videos in the series are as follows - 1. Introduction and Learning Objectives - th-cam.com/video/8sWSLS1jBUg/w-d-xo.html 2. Creating our first recursive function call - th-cam.com/video/jDPuL7w_AoQ/w-d-xo.html 3. An...
6. Fractals and Recursion: Some variations for the recursive squares function to get new patterns
มุมมอง 414 วันที่ผ่านมา
In this video we look at some variations of the basic recursive function to draw squares. With this we are able to get the subsequent squares to be in different positions. Other videos in the series are as follows - 1. Introduction and Learning Objectives - th-cam.com/video/8sWSLS1jBUg/w-d-xo.html 2. Creating our first recursive function call - th-cam.com/video/jDPuL7w_AoQ/w-d-xo.html 3. Analys...
5. Fractals and Recursion: Two more examples for recursion: Countdown and Sum of Numbers
14 วันที่ผ่านมา
In this video we look at two problems that we solve recursively. Printing a countdown and also finding a sum of all numbers until a given number. Recursion is a suitable method to solve these problems as these problems have a structure such that the problem looks like a bigger version of the same problem at every step. We also relate these to the recursion with the square patterns that we have ...
4. Fractals and Recursion: Reversing the order of drawing and recursive calls when drawing squares
มุมมอง 1614 วันที่ผ่านมา
4. Fractals and Recursion: Reversing the order of drawing and recursive calls when drawing squares
3. Fractals and Recursion: Analysis of how the recursive function to draw squares works.
มุมมอง 1814 วันที่ผ่านมา
3. Fractals and Recursion: Analysis of how the recursive function to draw squares works.
2. Fractals and Recursion: Our first recursive function call
มุมมอง 214 วันที่ผ่านมา
2. Fractals and Recursion: Our first recursive function call
1. Fractals and Recursion: Introduction and Learning Objectives
มุมมอง 514 วันที่ผ่านมา
1. Fractals and Recursion: Introduction and Learning Objectives
19. Welcome Message: Calling Deep Validate from the validate function using try/except/else/finally
มุมมอง 4หลายเดือนก่อน
19. Welcome Message: Calling Deep Validate from the validate function using try/except/else/finally
18. Welcome Message: Deep Validate function -- Raising Errors with the RAISE statement
มุมมอง 5หลายเดือนก่อน
18. Welcome Message: Deep Validate function Raising Errors with the RAISE statement
17. Welcome Message: Using try/except/else and assert statements to develop the validate function
มุมมอง 3หลายเดือนก่อน
17. Welcome Message: Using try/except/else and assert statements to develop the validate function
16. Welcome Message: What is assert statement and how can we handle AssertionError?
มุมมอง 2หลายเดือนก่อน
16. Welcome Message: What is assert statement and how can we handle AssertionError?
15. Welcome Message: An overview of the use of **kwargs in the Validate function
มุมมอง 3หลายเดือนก่อน
15. Welcome Message: An overview of the use of kwargs in the Validate function
14. Welcome Message: Using *args and **kwargs in the same function
มุมมอง 2หลายเดือนก่อน
14. Welcome Message: Using *args and kwargs in the same function
13. Welcome Message: Handling Key Error in the name strength function
มุมมอง 5หลายเดือนก่อน
13. Welcome Message: Handling Key Error in the name strength function
12. Welcome Message: Creating a name_strength function that accepts keyword arguments
มุมมอง 3หลายเดือนก่อน
12. Welcome Message: Creating a name_strength function that accepts keyword arguments
11. Welcome Message: What are **kwargs? (Keyword Arguments)
มุมมอง 2หลายเดือนก่อน
11. Welcome Message: What are kwargs? (Keyword Arguments)
10. Welcome Message: The general form of try/except: try/except/else/finally, with example
มุมมอง 2หลายเดือนก่อน
10. Welcome Message: The general form of try/except: try/except/else/finally, with example
9. Welcome Message: Adding an index argument to our short form function
มุมมอง 4หลายเดือนก่อน
9. Welcome Message: Adding an index argument to our short form function
7:36
Scratchs Cursive Favour Fru YFYGUUG
For some reason when i use scratch and for 5 minutes scratch resets and i lose all my progress can you make a video fixing that pls?
@@user-NEZZIE This is very strange. I have not encountered anything like this before. Could you please highlight if you are doing Scratch online or offline (like on a downloaded version) and which blocks were you using in the code? Thanks
I m just in my ipad and i just want to save my progress and I wasn’t making an project i was in a studio just playing called sprunki and whenever i click something that is normal it just crash and for some reason theres a mod i used and it didn crashout
@@user-NEZZIE I see. Do you have the link to the project which crashed your Scratch. Like I said, it is in general a very stable platform. So I am wondering if there may be something specific to the code. Perhaps you could also try creating a project or browsing through some other projects to see. Thanks and regards
@@wibyte it’s probably because if chrome because i used minecorfort edge or whatever its called and like over about like 1 hour i still didnt get crashed
Hello, After how much time does the replit development time cycles resets? I can't find the documentation of update
Its month to month. You can check on the USAGE tab in your account and the date of the next reset will be mentioned. (Everyone seems to have a different accounting cycle). Thanks and regards
IT DIN"T WORK!!!!!!!!!!!!!!!!!!
6:24 why just the length of the even_letters and not the string(input string)?
This is because we create two sub-strings from the input string and the for loop runs over these two sub-strings. Let's take an example: Say the input string is 'abcdef' -- length is 6. The even_letters string would be 'ace' (length is 3), and the odd_letters string would be 'bdf', again length is 3. The for loop to jumble up hence must go from 0 to 2. Because the output will be O[0] E[0] O[1] E[1] O[2] E[2] Hope this clarifies. Thanks and regards
very helpful
I am glad you found it useful.
hi, what ide in that tutorial?
excuse, that online ide.
Its replit: www.replit.com
@@wibyte thank You
0:17 This also
can u send the full code link please
The project link is here - replit.com/@vineetforwibyte/WordleDemoProject#main.py Do take a look at our course website for this and other exciting projects - wibyte.in/python-level-2-course-material/
can u send the full code
The project link is here - replit.com/@vineetforwibyte/WordleDemoProject#main.py Do take a look at our course website for this and other exciting projects - wibyte.in/python-level-2-course-material/
can u send the full code or the github
Regret the late reply. The project link is here - replit.com/@vineetforwibyte/WordleDemoProject#main.py Do take a look at our course website for this and other exciting projects - wibyte.in/python-level-2-course-material/
tysk you helped me with my homeworks, didn'tundrestood it alone
Happy to hear that. Forever, enjoy coding!
⭐ *PromoSM*
I full agree with you sirji
Thanks for your comment. You can listen to the full talk here - th-cam.com/video/O1MhJQ8BsT8/w-d-xo.htmlfeature=shared
My god this man is underrated. Like omfg so many videos! Thank you for the tutorials I find them really helpful. Have a great day < 3
Glad you like them! Appreciate your comment.
@@wibyte thank you! You really are great at what you do. Keep up the good work :^ ]
These tutorial are great, especially when learning some basic python, but what value does this have tbh. Like would it not be faster to draw an image in gimp for example, save it as a png and just use python to pull up the image if needed on a website or some app.
Thanks for your comment. These tutorials are indeed meant to be basic python lessons. The intention is to learn Python through fun activities and see concepts in action. This is generally a very effective way to learn. Pixel art, in particular, is an interesting activity because it helps students literally 'visualize' the for loop -- sort of a blend between logic and art. Also, the concept in fact reflects many a things in practice , e.g., image sensors, tv screens, digital images, design of garments etc where essentially each pixel is given a color to create a composite image. We have seen tremendous creativity in this activity in the student projects. I agree that tools like gimp have a lot of value in creating images for different purposes, but the goal here is learning not image creation per se, as I said, its learning Python :) Thanks again, and warm regards.
Bonjour. Thanks,gorgeous traveling, see you soon. ;)
you made amazing traveling!I'll be back, Wibyte!
Wibyte, Yo. you made fantastic video,catch you later~
What a great educational series and project tutorial! Looking forward to more content from you :)
Thanks a lot for the kind words of encouragement. Happy to know that you found the tutorial useful. Do look at our website, www.wibyte.in for more similar lessons. Warm regards!
Perfect English pro )))
First
Selam nialemna yimney asme
The only comment
Thanks for commenting.
...
Thank you sir this was helpful for mine project
My pleasure Tanish. Glad to know you found this useful. Take care.
it is Tanish studying from him for 1 year and he is teaching very excellent 5 star out of 5👍👍👍👍. I recommend to take his class
Hello Tanish, thank you so much for your comment. It is a pleasure to have you in the class. You have a very good attitude towards learning and I look forward to taking you further in this journey. Take care
Its Anirudh and I really enjoy the class so I recommend the class.
Thanks Anirudh! It is a pleasure to have you in the class. Take care.
This is good
Thanks! Glad you found this useful. Regards
Thanks you very much ❤❤❤❤❤😂😂
I am getting problems deleting my sprite prahalad Raghavendran
Please share the project
Programming is a very crucial skill in today’s world!
Thank you this really helped out a ton!
Thanks for your comment. I am glad that you found this helpful. Cheers!
Bro it does not work
Hmmm ... did you check the spam folder. Or perhaps you could tell which part is where you are facing the problem ...
I accidentally deleted sprite cat
You can try doing Edit --> restore sprite . If that does not help, you can just add the cat sprite back as a new sprite. Hope this helps. Regards
i hope i get it in an hour
Please do check the spam folder too. Sometimes the mail ends up there. Take care
thanks for explaining vinnet sir
My pleasure, Vardaan. Take care and do reach out if you need any guidance. Cheers!