Computer Science, asked by swpnsureshbabu, 3 months ago

write a program to print Fibonacci series (in python)​

Answers

Answered by izuku57
5

I HOPE THIS ANSWER HELPFUL TO YOU

PLEASE MARK THIS ANSWER AS A BRAINLENT ANSWER

Attachments:
Answered by namsisangma29
1

Answer:

A Fibonacci sequence is the integer sequence of

0,1,1,2,3,5,8....

The first two term are 0 and 1 . All other terms are

obtained by adding the preceding two terms.

This means to say the nth term is the sum of

( n-1 ) th and ( n-2)th term.

Similar questions