×
FREE ASSISTANCE FOR THE INQUISITIVE PEOPLE
Tutorial Topics
X
softetechnologies
Divisor, Check Prime Numbers Pattern 01
Fibonacci Sequence - Python Language
1232    Arnab De    23/09/2020

Write a python program to print first 10 numbers in Fibonacci Sequence.

First two numbers of the fibonacci sequence are 0 and 1. Each numbers of the fibonacci sequence genarated by adding the previous two numbers. Some numbers of fibonacci sequence are

0, 1, 1, 2, 3, 5, 8, 13, 21, 34, ...

softetechnologies
N=10
a=0
b=1
print(a,",",b,end='')
for i in range(3,N+1):
    k=a+b
    a,b=b,k
    print(",",k,end='')
softetechnologies
Divisor, Check Prime Numbers Pattern 01
softetechnologies
Author Details
Arnab De
I have over 16 years of experience working as an IT professional, ranging from teaching at my own institute to being a computer faculty at different leading institute across Kolkata. I also work as a web developer and designer, having worked for renowned companies and brand. Through tutorialathome, I wish to share my years of knowledge with the readers.
Enter New Comment
Comment History
No Comment Found Yet.
Rabindranath Tagore
It is no easy task to lead men. But it is easy enough to drive them.
Rabindranath Tagore
2367
60.53
Today So Far
Total View (Lakh)
softetechnologies
26/05/2018     44701
01/01/2018     36866
25/06/2018     36809
28/06/2017     34888
02/08/2017     33479
01/08/2017     27833
06/07/2017     27605
15/05/2017     27175
14/07/2017     22932
11/09/2018     21655
softetechnologies