You are viewing a single comment's thread. Return to all comments →
def isFibo(n): # Write your code here start = 0 last = 1 while last <= n: tmp = last + start start = last last = tmp if last== n: return "IsFibo" return "IsNotFibo"
Seems like cookies are disabled on this browser, please enable them to open this website
Is Fibo
You are viewing a single comment's thread. Return to all comments →