Python Forum
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Generators don't work
#1
Hi all,

I'm trying to use generators, however using "print(next(gen))" doesn't print anything, I obtain just "Process finished with exit code 0". Here's my code:
def get_values():
    yield "Hello"
    yield "World"
    yield 123

def get_values2():
    gen = get_values()
    print(next(gen))
    print(next(gen))
    print(next(gen))
buran write Jan-16-2025, 11:57 AM:
Please, use proper tags when post code, traceback, output, etc. This time I have added tags for you.
See BBcode help for more info.
Reply
#2
you never call get_values2()
svalencic likes this post
If you can't explain it to a six year old, you don't understand it yourself, Albert Einstein
How to Ask Questions The Smart Way: link and another link
Create MCV example
Debug small programs

Reply
#3
Many thanks for formatting and reply. I tried to use
example_get_values
instead, like in tutorial here: https://www.youtube.com/watch?v=tmeKsb2F...LL&index=3, however I still obtain the same output. How should I change the code? Thanks again.
Reply
#4
what is example_get_values? It is not present in your code. With your code you should do
def get_values():
    yield "Hello"
    yield "World"
    yield 123
 
def get_values2():
    gen = get_values()
    print(next(gen))
    print(next(gen))
    print(next(gen))
get_values2()
That said this code may be written much better. For example

def generate_values():
    values = ['Hello', "world", 123]
    for item in values:
        yield item

gen = generate_values()
for item in gen:
    print(item)
If you can't explain it to a six year old, you don't understand it yourself, Albert Einstein
How to Ask Questions The Smart Way: link and another link
Create MCV example
Debug small programs

Reply
#5
Perfect, now I understand, I have to call the function. But still I don't get it why here they didn't have to call the function for it to work perfectly:

https://www.youtube.com/watch?v=tmeKsb2F...dex=3&t=1s at time 01.30
Reply
#6
(Jan-16-2025, 03:10 PM)svalencic Wrote: But still I don't get it why here they didn't have to call the function for it to work perfectly:
That's because they don't show you the code where they call the function. They only show you part of the code.
svalencic likes this post
« We can solve any problem by introducing an extra level of indirection »
Reply
#7
(Jan-16-2025, 04:04 PM)Gribouillis Wrote:
(Jan-16-2025, 03:10 PM)svalencic Wrote: But still I don't get it why here they didn't have to call the function for it to work perfectly:
That's because they don't show you the code where they call the function. They only show you part of the code.

OK, that explains it, thanks a lot!
Reply
#8
The code works:
[deadeye@nexus ~]$ python
Python 3.13.1 (main, Dec  4 2024, 18:05:56) [GCC 14.2.1 20240910] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> def get_values():
...     yield "Hello"
...     yield "World"
...     yield 123
...
... def get_values2():
...     gen = get_values()
...     print(next(gen))
...     print(next(gen))
...     print(next(gen))
...
>>> get_values2()
Hello
World
123
Almost dead, but too lazy to die: https://sourceserver.info
All humans together. We don't need politicians!
Reply


Possibly Related Threads…
Thread Author Replies Views Last Post
  2 iterators or generators Skaperen 1 42,903 Jan-04-2018, 07:41 AM
Last Post: Gribouillis
  Using Generators and their expressions BeerLover 3 5,385 Mar-18-2017, 11:06 PM
Last Post: Ofnuts
  Stacking generators Ofnuts 2 23,610 Sep-18-2016, 08:36 PM
Last Post: Ofnuts

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020