I have followed all your videos from the beginning. The videos were all at the proper length with examples and the explanation was very clear and simple. Thank you. Highly recommended
These videos are extremely helpful more people should watch this, the series on python helped me so much in such little time i highly recommend for people that do not know how to code, watch this.
Thank you so much for the helpful video! The last video, which covered iterations, and this video, covering generators, really helped me understand these concepts. You explained them very well.
🔥 Learn Python with a more hands-on experience with Programiz PRO-interactive lessons, quizzes & challenges.
Try Programiz PRO: bit.ly/right-python
I have followed all your videos from the beginning. The videos were all at the proper length with examples and the explanation was very clear and simple. Thank you. Highly recommended
These videos are extremely helpful more people should watch this, the series on python helped me so much in such little time i highly recommend for people that do not know how to code, watch this.
Stuck at Solo Learn and saved by this simple video thank a lot!
Thank you for this video😢this is the only place I can come to learn the basics ❤
Thank you so much for the helpful video! The last video, which covered iterations, and this video, covering generators, really helped me understand these concepts. You explained them very well.
I find these videos so so helpful. Always really clearly explained with easy to understand examples. Great work
Great explanation, thank you!
Finally a good python video
after you make all your videos covering the basics ..i would like to see videos on basic projects for beginners
Another awesome tutorial
Woww..a traditional kerala house in background..
Your videos are really so nice
Congraulations for crossing 20,000 subscribers
Thank you so much 😀
great work bro. thank you very much.
Wts the use of iter inside class even? The result is same
Please, how many times should u call the print function
Why do we write yield a only and not both a and b both
Nice content!
I didn't understand why use generators.............
GPT gigatutor sent me here
MY ANSWER
def generate_odd():
n = 1
while True:
yield n
n += 2
odd = generate_odd()
print(next(odd))
print(next(odd))
print(next(odd))
print(next(odd))
print(next(odd))
print(next(odd))
print(next(odd))
print(next(odd))
print(next(odd))
print(next(odd))