# write a python program that creates a tuple storing first 10 terms of fibonacci series
a, b = 0, 1
my_tuple = ()
for index in range(100):
my_tuple += (a,)
a, b = b, a+b
print("Fibonacci Series stored in tuple : ")
print(my_tuple)
# write a python program that creates a tuple storing first 10 terms of fibonacci series
a, b = 0, 1
my_tuple = ()
for index in range(100):
my_tuple += (a,)
a, b = b, a+b
print("Fibonacci Series stored in tuple : ")
print(my_tuple)
Program 1 : Combine Two Audio Files in to One Audio File using Python MoviePy || Conca…
0 Comments