Friday, December 13, 2019

Write a python program code to print Fibonacci series

Write a python program code to print Fibonacci series

Answer:
# Python Program - Print Fibonacci Series

print("Enter 'x' for exit.");
terms = input("Upto how many terms ? ");
if terms == 'x':
    exit();
else:
    term = int(terms);
    a = 0;
    b = 1;
    count = 2;
    print();
    if term == 0:
        print("Please enter a number...exiting...");
    elif term < 0:
        print("Please enter a positive number...exiting..");
    elif term == 1:
        print(a);
    else:
        print(a,",",b,end=",");
        while count < term:
            c = a + b;
            print(c,end=",");
            a = b;
            b = c;
            count = count + 1;

No comments:

Post a Comment

Featured posts

वन्दे मातरम्

 वन्दे मातरम् 🇮🇳   अर्थ: "मैं तुझे नमन करता हूँ, माँ"  ये सिर्फ एक नारा नहीं, भारत माँ के प्रति श्रद्धा और प्रेम है। इसके बारे म...

Popular posts