help understand this ex:, and lesson related to this! | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 3

help understand this ex:, and lesson related to this!

programming

30th Mar 2017, 12:24 PM
Nasibillo Muhamedov
Nasibillo Muhamedov - avatar
2 Answers
+ 2
a, b = 0, 1 while b < 10: print(b) a, b = b, a+b 1 1 2 3 5 8
30th Mar 2017, 12:26 PM
Nasibillo Muhamedov
Nasibillo Muhamedov - avatar
+ 2
and also next: a, b = 0, 1 while b < 1000: print(b, end=',') a, b = b, a+b 1,1,2,3,5,8,13,21,34,55,89,144,233,377,610,987,
30th Mar 2017, 12:29 PM
Nasibillo Muhamedov
Nasibillo Muhamedov - avatar