Skip to content

Commit 47fdd22

Browse files
authored
Create fibonacci.py
1 parent 4657975 commit 47fdd22

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

fibonacci.py

+11
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)