We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4657975 commit 47fdd22Copy full SHA for 47fdd22
fibonacci.py
@@ -0,0 +1,11 @@
1
+a, b = 0, 1
2
+count = 0
3
+input_count=10
4
+
5
+print("Fibonacci sequence:")
6
+while count < input_count:
7
+ print(a)
8
+ new = a + b
9
+ a = b
10
+ b = new
11
+ count += 1
0 commit comments