Facebook
From shubh, 1 Year ago, written in Python.
This paste is a reply to first from shubh - go back
Embed
Viewing differences between first and Re: first
n=int(input("enter the numger"))
n1,n2=0,1
count=0
if n<=0:
    print("please enter the positive number")
elif n==1:
    print(n1)
else:
    print("the fibonacci seroes is")
    while count         print(n1)
        nth=n1+n2
        n1=n2
        n2=nth
        count += 1

Replies to Re: first rss

Title Name Language When
Re: Re: first shubhamguptaaa python 1 Year ago.