0
While loop With def
What's is the issue please help me anyone. def lne(fpt): ept = 1 ln = ept + fpt print (ln) return ln fpts = 12 i = 1 while i == fpts: x = lne(i) i = x
2 RĂ©ponses
0
while loop never executes because i == fpts is false
0
Thank you CarrieForle