All problems
EasyAlgorithms
Fibonacci sequence
Print the first 10 Fibonacci numbers (start with 0, 1).
- #algorithms
- #loop
Sample input
n = 10
Sample output
0 1 1 2 3 5 8 13 21 34
fibonacci.py
Output
Press "Run code" to execute.
Loading…
Print the first 10 Fibonacci numbers (start with 0, 1).
n = 10
0 1 1 2 3 5 8 13 21 34
Press "Run code" to execute.