Python Forum
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Yield Keyword
#3
(Aug-23-2018, 05:43 PM)6pathsMadara Wrote: Below is the code I have done following a tutorial, it involves creating a generator that makes the Fibonacci sequence, and then prints it out for values under 100. My problem that I have is I don't understand why I am using 'yield a' and what this does. Code is below:
def fib(): a = 0 b = 1 while True: yield a a = b b = a + b for f in fib(): if f > 100: break print(f)
(Aug-23-2018, 05:59 PM)Larz60+ Wrote: You capture the value (a from fib in your loop) returned by fib, but don't do anything with it except for the last iteration. you should save it to a list, or print out results immediately: to list:
 def fib(): a = 0 b = 1 while True: yield a a = b b = a + b fibs = [] for f in fib(): fibs.append(f) if f > 100: break print(fibs) 
immediate:
 def fib(): a = 0 b = 1 while True: yield a a = b b = a + b for f in fib(): print('{}, '.format(f), end = '') if f > 100: break print() 
But I still don't understand what yield does, when i remove it, the code doesn't do anything, there's no errors but it doesn't do anything, but I still don't understand it's functionality.
Reply


Messages In This Thread
Yield Keyword - by 6pathsMadara - Aug-23-2018, 05:43 PM
RE: Yield Keyword - by Larz60+ - Aug-23-2018, 05:59 PM
RE: Yield Keyword - by 6pathsMadara - Aug-23-2018, 06:26 PM
RE: Yield Keyword - by Larz60+ - Aug-23-2018, 08:39 PM
RE: Yield Keyword - by heras - Aug-23-2018, 08:39 PM
RE: Yield Keyword - by DeaD_EyE - Aug-24-2018, 08:30 AM
RE: Yield Keyword - by 6pathsMadara - Aug-24-2018, 11:43 AM

Possibly Related Threads…
Thread Author Replies Views Last Post
  yield question with append gnomegordon 2 790 Dec-04-2024, 06:47 PM
Last Post: gnomegordon
  yield from akbarza 4 1,897 Apr-19-2024, 07:58 PM
Last Post: DeaD_EyE
  yield usage as statement or expression akbarza 5 2,187 Oct-23-2023, 11:43 AM
Last Post: Gribouillis
  Find a specific keyword after another keyword and change the output sgtmcc 5 2,090 Oct-05-2023, 07:41 PM
Last Post: deanhystad
  Using list comprehension with 'yield' in function tester_V 5 3,875 Apr-02-2023, 06:31 PM
Last Post: tester_V
  Yield generator weird output Vidar567 8 5,235 Nov-23-2020, 10:59 PM
Last Post: deanhystad
  Trying to access next element using Generator(yield) in a Class omm 2 2,850 Oct-19-2020, 03:36 PM
Last Post: omm
  Yield statement question DPaul 6 3,721 Sep-26-2020, 05:18 PM
Last Post: DPaul
  Problem about yield, please help!! cls0724 5 4,265 Apr-08-2020, 05:37 PM
Last Post: deanhystad
  does yield support variable args? Skaperen 0 2,134 Mar-03-2020, 02:44 AM
Last Post: Skaperen

Forum Jump:

User Panel Messages

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