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
1 Answer
+ 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.