โ Back to Loops
Question 122
Loop: Fibonacci Sequence
Loop: Fibonacci Sequence
Print the first 8 numbers of the Fibonacci sequence (each number is the sum of the two before it, starting from 0 and 1) as a single line joined by ", ".
Expected output:
0, 1, 1, 2, 3, 5, 8, 13Expected Output:
0, 1, 1, 2, 3, 5, 8, 13
Topics:
Loops
Code Editor
1
Tab to indent ยท Ctrl+Enter to run ยท Ctrl+Space to expand shortcuts (clog, fn, fori)
Your Output
Run your code to see the output here...
Test Cases
Run your code to see test case results.