Skip to content

Commit

Permalink
Python
Browse files Browse the repository at this point in the history
  • Loading branch information
ghluka committed Mar 31, 2024
1 parent 57472a0 commit 457c1f0
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ Excerpt from [Wikipedia](https://en.wikipedia.org/wiki/Fibonacci_sequence):

We welcome contributions, to see our rules and guidelines on contributing please read [CONTRIBUTING.md](CONTRIBUTING.md)

# 🌐 Languages <!-- Languages start -->[61 total]
# 🌐 Languages <!-- Languages start -->[62 total]

- [05AB1E](./src/%23/05AB1E)
- [Ada](./src/A/Ada)
Expand Down Expand Up @@ -66,7 +66,8 @@ We welcome contributions, to see our rules and guidelines on contributing please
- [Pascal](./src/P/Pascal)
- [Perl](./src/P/Perl)
- [PowerShell](./src/P/PowerShell)
- [Python](./src/P/Python)
- [Python 2](./src/P/Python%202)
- [Python 3](./src/P/Python%203)
- [Q#](./src/Q/Q%23)
- [R](./src/R/R)
- [Ruby](./src/R/Ruby)
Expand Down
4 changes: 4 additions & 0 deletions src/P/Python 2/fibonacci.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
a, b = 0, 1
for _ in range(10):
print a
a, b = b, a + b
File renamed without changes.

0 comments on commit 457c1f0

Please sign in to comment.