×
FREE ASSISTANCE FOR THE INQUISITIVE PEOPLE
Tutorial Topics
X
softetechnologies
Divisor, Check Prime Numbers Pattern 01
Fibonacci Sequence - Python Language
592    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.
Albert Einstein
Try not to become a man of success, but rather try to become a man of value.
Albert Einstein
3325
38.7
Today So Far
Total View (Lakh)
softetechnologies
01/01/2018     34306
28/06/2017     30942
26/05/2018     30855
02/08/2017     28850
25/06/2018     26169
15/05/2017     24600
01/08/2017     23448
06/07/2017     23181
21/04/2018     19206
14/07/2017     18466
softetechnologies