Looping Statements
Looping Statements
a-=1
print ('Factorial is',fact)
b = int (input('Enter The Number Fabonices Series '))
f1 = 0
f2 = 1
while b>0:
f1, f2 = f2, f1 + f2
print (f1,end=' ')
b-=1
➢ Practical Output –
count += 1
print()
break
➢ Practical Output –
➢ Practical Output –