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]