commit-live-students / generate-fibonacci-series

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Generate Fibonacci sequence up to 10

Notes:

  • Use while loop to iterate upto 10.
  • Fibonacci series is 0, 1, 1, 2, 3, 5, 8 ... and so on.

Instructions:

  • Program should be written in file build.py

  • Input

     Type:  Integer 
     Value: 10
    
  • Expected Output

      Type:  List
      Value: [0 , 1, 1 , 2 , 3 , 5 , 8 , 13 , 21 , 34]
    

About


Languages

Language:Python 100.0%