Python Forum
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
yield help
#1
hey everyone !
So I'm currently testing yield function
#contient des exemples d'utilisation de la fonction Yield

#exp 1
def exYield1() :
    """test de yield"""
    yield 1
    yield 2
    yield 3

    
print("Exemple 1 : ")
for i in exYield1() :
    print(i)
print("")

#exp 2
def exYield2(bord_inf,bord_sup) :
    """Cette fonction avance de 2 en 2 entre des bords délimités"""
    while bord_inf < bord_sup :
        valeurRecu = (yield bord_inf)
        if valeurRecu is not None :
            bord_inf = valeurRecu
        bord_inf += 2
        
print("Exemple 2 : ")       
#compte de 2 en 2 de 10 à 20
for i in exYield2(10,20) :
    print(i)
print("")

print("Exemple 3 : ")
#compte de 2 en 2 de 10 à 50
gen1 = exYield2(10,100)
for i in gen1 :
    print(i)
    if i == 50 :
        gen1.close()
print("")

print("Exemple 4 : ")
#compte de 2 en 2 de 10 à 100 mais saute les nombres de 20 à 59 
gen2 = exYield2(10,100)
for i in gen2 :
    print(i)
    if i == 18 :
        gen2.send(58)
and when i get to the 4th exemple the loop does not display the number 60
Output:
Exemple 4 : 10 12 14 16 18 62 64 66 68 70 72 74 76 78 80 82 84 86 88 90 92 94 96 98
it only append when i launch the script, if i rewrite the code in the console(exyield2 and the 4th exemple)60 is display.
Output:
10 12 14 16 18 60 62 64 66 68 70 72 74 76 78 80 82 84 86 88 90 92 94 96 98
Reply


Messages In This Thread
yield help - by chakox - Apr-11-2019, 11:28 PM
RE: yield help - by perfringo - Apr-12-2019, 06:24 AM
RE: yield help - by Gribouillis - Apr-12-2019, 07:02 AM
RE: yield help - by chakox - Apr-13-2019, 09:00 PM
RE: yield help - by Gribouillis - Apr-13-2019, 09:26 PM
RE: yield help - by chakox - Apr-13-2019, 09:42 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  yield from akbarza 4 266 Apr-19-2024, 07:58 PM
Last Post: DeaD_EyE
  yield usage as statement or expression akbarza 5 805 Oct-23-2023, 11:43 AM
Last Post: Gribouillis
  Using list comprehension with 'yield' in function tester_V 5 1,257 Apr-02-2023, 06:31 PM
Last Post: tester_V
  Yield generator weird output Vidar567 8 3,290 Nov-23-2020, 10:59 PM
Last Post: deanhystad
  Trying to access next element using Generator(yield) in a Class omm 2 1,974 Oct-19-2020, 03:36 PM
Last Post: omm
  Yield statement question DPaul 6 2,522 Sep-26-2020, 05:18 PM
Last Post: DPaul
  Problem about yield, please help!! cls0724 5 2,863 Apr-08-2020, 05:37 PM
Last Post: deanhystad
  does yield support variable args? Skaperen 0 1,680 Mar-03-2020, 02:44 AM
Last Post: Skaperen
  generator function that yield from a list buran 9 4,190 Jun-04-2019, 10:26 PM
Last Post: snippsat
  Multiple calls to Python interpreter embedded in C++ application yield segmentation f mmoelle1 0 2,833 Mar-21-2019, 08:54 PM
Last Post: mmoelle1

Forum Jump:

User Panel Messages

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