Computer Science, asked by ansu1562, 1 year ago

How to print the Fibonacci Sequence using Python?

Answers

Answered by mafiaking
0

bhasha in this case you don't mind that the incident is that I

Answered by govindawasthi558
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