In this we are going to see a basic program about Fibonacci Series using while loop in Python Programming Language.
def fibonacci_series():
i = 0
a = 0
b = 1
while i < 10:
print(a,end=" ")
a, b = b, a + b
i += 1
fibonacci_series()
# Coded By Dhiraj Shelke
#ENJOY CODING
Post a Comment
FOR ANY DOUBTS AND ERRORS FEEL FREE TO ASK. YOUR DOUBTS WILL BE ADDRESSED ASAP