This is correct answer Fibonacci python 3 | Sololearn: Learn to code for FREE!
Новый курс! Каждый программист должен знать генеративный ИИ!
Попробуйте бесплатный урок
0

This is correct answer Fibonacci python 3

a=int(input("enter ur limit : ")) first=0 second=1 print(first) print(second) for a in range (1,a-1): third=first+second print(third) first,second=second,third

11th Nov 2020, 4:32 AM
Mr. Titan
Mr. Titan - avatar
1 ответ
+ 1
What is your question? You say that code is correct and I don't see anything wrong with it. If you're trying to share code, you can: 1. Click "New Code" from your profile. 2. Python 3 as the language. 3. Paste your code and test run it. 4. Click "Save" and select Public.
11th Nov 2020, 5:59 AM
Josh Greig
Josh Greig - avatar