×
FREE ASSISTANCE FOR THE INQUISITIVE PEOPLE
Tutorial Topics
X
softetechnologies
Divisor, Check Prime Numbers Pattern 01
Fibonacci Sequence - Python Language
1129    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.
Sri Sri Ramakrishna Paramahamsa
All troubles come to an end when the ego dies
Sri Sri Ramakrishna Paramahamsa
2189
57.19
Today So Far
Total View (Lakh)
softetechnologies
26/05/2018     43517
01/01/2018     36473
25/06/2018     35467
28/06/2017     34547
02/08/2017     32972
01/08/2017     27456
06/07/2017     27201
15/05/2017     26836
14/07/2017     22453
21/04/2018     21105
softetechnologies