Python Forum
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
yield question with append
#1
when I try to use print the output the yield result, everything is shown as expected. The code and output is as below:
def triangles():
    oo = [1] 
    yield oo 
    oo.append(1)
    yield oo  
    oo.append(1)
    yield oo 
    oo.append(1)
    yield oo 

# Collect the first 3 rows of Triangle
n = 0
for t in triangles():
    print (t)
    n += 1
    if n == 3:  
        break
the output is:
Output:
[1] [1, 1] [1, 1, 1]
However when I tried to append the yield result further, like below
n = 0
results = []
for t in triangles():
    ## print (t)
    results.append(t)
    n += 1
    if n == 3:  
        break

# Print the results
for t in results:
    print(t)
the output becomes:
Output:
[1, 1, 1] [1, 1, 1] [1, 1, 1]
Actually it is hard for me to understand the result. why the 1st and 2nd row changes after further appending?
Reply
#2
triangles returns the same list each time. Look at it this way:
def triangles():
    oo = [1]
    yield oo
    oo.append(1)
    yield oo
    oo.append(1)
    yield oo
    oo.append(1)
    yield oo


# Collect the first 3 rows of Triangle
saved_triangles = []
for t in triangles():
    saved_triangles.append(t)
    print(t, id(t))
print("\nSaved Triangles")
for t in saved_triangles:
    print(t, id(t))
Output:
[1] 2446984510720 [1, 1] 2446984510720 [1, 1, 1] 2446984510720 [1, 1, 1, 1] 2446984510720 Saved Triangles [1, 1, 1, 1] 2446984510720 [1, 1, 1, 1] 2446984510720 [1, 1, 1, 1] 2446984510720 [1, 1, 1, 1] 2446984510720
As you can see from the output, the object returned by triangles() is always the same list (the id's match). The first time triangles() yields a list, the list contains [1]. The second yield returns the same list, but now the list contains [1, 1]. Printing the saved_triangles show that the first list yielded by triangles() magically morphed from containing [1] to containing [1, 1].

I think you want triangles to return a new list for each yield.
def triangles(count):
    for i in range(count):
        yield [1] * (i + 1)


# Collect the first 3 rows of Triangle
saved_triangles = []
for t in triangles(4):
    saved_triangles.append(t)
    print(t, id(t))
print("\nSaved Triangles")
for t in saved_triangles:
    print(t, id(t))
Output:
[1] 2280964861568 [1, 1] 2280964456128 [1, 1, 1] 2280964455616 [1, 1, 1, 1] 2280964886848 Saved Triangles [1] 2280964861568 [1, 1] 2280964456128 [1, 1, 1] 2280964455616 [1, 1, 1, 1] 2280964886848
Now triangles yields a new list each time. Yielding a longer list doesn't change the length of previous yielded lists.
Reply
#3
Appreciate it, deanhystad: I understand it. the id helps.
Reply


Possibly Related Threads…
Thread Author Replies Views Last Post
  yield from akbarza 4 1,665 Apr-19-2024, 07:58 PM
Last Post: DeaD_EyE
  yield usage as statement or expression akbarza 5 1,962 Oct-23-2023, 11:43 AM
Last Post: Gribouillis
  Using list comprehension with 'yield' in function tester_V 5 3,368 Apr-02-2023, 06:31 PM
Last Post: tester_V
  Yield generator weird output Vidar567 8 4,862 Nov-23-2020, 10:59 PM
Last Post: deanhystad
  Trying to access next element using Generator(yield) in a Class omm 2 2,690 Oct-19-2020, 03:36 PM
Last Post: omm
  Yield statement question DPaul 6 3,488 Sep-26-2020, 05:18 PM
Last Post: DPaul
  Cant Append a word in a line to a list err "str obj has no attribute append Sutsro 2 4,061 Apr-22-2020, 01:01 PM
Last Post: deanhystad
  Problem about yield, please help!! cls0724 5 3,920 Apr-08-2020, 05:37 PM
Last Post: deanhystad
  does yield support variable args? Skaperen 0 2,044 Mar-03-2020, 02:44 AM
Last Post: Skaperen
  generator function that yield from a list buran 9 5,712 Jun-04-2019, 10:26 PM
Last Post: snippsat

Forum Jump:

User Panel Messages

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