def fibonacci(n, first=0, second=1): for _ in range(n): print(first) # Seiteneffekt first, second = second, first + second # Zuweisung fibonacci(10)