In Python program , How to print Fibonacci series
Answers
Answered by
0
Answer:
The process of converting the value of one data type (integer, string, float, etc.) to another is called type conversion. Python has two types of type conversion.
Answered by
1
Answer:
your code in python:-
n=int (input ("Enter no. of terms")
for i in range (n):
print (x,end=" ")
x,y=y,x+y
Explanation:
I hope the code helps you
This is know as multiple variable assignments
Learn more about it on the official website of python
Thank you
Similar questions