(Python 3) fibonacci series code using for loop

preview_player
Показать описание
Dont forget to like and subscribe

Explanation video will be uploded soon
Code:
F=int(input("enter the fibonacci number you want))
n1=0
n2=1
Print(n1)
print(n2)
For i in range(1,f):
n3=n1+n2
Print(n3)
n1,n2=n2,n3
Software used :
PYCHARM BY JETBAINS
For mac and window user can also use other softwares;
Spyder
Vscode
For android user:
Pydroid

Рекомендации по теме
Комментарии
Автор

I make video on basic or introduction or program
and explanation

programer
Автор

Code:
F=int(input("enter the fibonacci number you want))
n1=0
n2=1
Print(n1)
print(n2)
For i in range(1, f):
n3=n1+n2
Print(n3)
n1, n2=n2, n3

programer
welcome to shbcf.ru