Oct-27-2021, 07:25 PM
It doesn't work. What's wrong?
list1 = [1, 1] i = 2 while True: terim = list1[i - 1] + list1[i - 2] list1.append(terim) terim = str(terim) for x in terim: if len(terim) == 100: break i += 1 print(terim)