Question
Need to write a Python script that prints the first 10 Fibonacci numbers (0, 1, 1, 2, 3, 5, 8, 13, 21, 34).
f84d704b-2b80-449b-83bb-77d91f50a978
Need to write a Python script that prints the first 10 Fibonacci numbers (0, 1, 1, 2, 3, 5, 8, 13, 21, 34). Looking for the most concise and Pythonic iterative approach without importing any libraries.