How to print the Fibonacci Sequence using Python?
Answers
Answered by
0
bhasha in this case you don't mind that the incident is that I
Answered by
0
Answer:
it is very easy:
Explanation:
y = 1
z = 0
for i in range (10):
x = z + y
print(x)
y = x + z
print (y)
z = y + x
print (z)
Attachments:
Similar questions