id/email
password
forgot password | create account
about | help | code help+videos | done | prefs
CodingBat code practice

 

gaurav1780@gmail.com 03_loops > in_fibonacci_sequence
prev  |  next  |  chance

A fibonacci sequence is one starting with the numbers 0 and 1, and every following number being the sum of the previous two terms. Thus, the fibonacci sequence is 0, 1, 1, 2, 3, 5, 8 ... Define a function that when passed an integer, returns true if it exists in the fibonacci sequence, false otherwise.


in_fibonacci_sequence(0) → True
in_fibonacci_sequence(1) → True
in_fibonacci_sequence(54) → False

...Save, Compile, Run (ctrl-enter)

def in_fibonacci_sequence(n):

Editor font size %:
Shorter output


Forget It! -- delete my code for this problem

Progress graphs:
 Your progress graph for this problem
 Random user progress graph for this problem
 Random Epic Progress Graph

Python Help

Difficulty: 2 Post-solution available

Copyright Nick Parlante 2017 - privacy