diff options
author | Zhongheng Liu <z.liu@outlook.com.gr> | 2025-01-05 22:59:47 +0200 |
---|---|---|
committer | Zhongheng Liu <z.liu@outlook.com.gr> | 2025-01-05 22:59:47 +0200 |
commit | 10e454b6abf3106119c4288906656dc0b9832239 (patch) | |
tree | 737355c16da6b25dc1b90c664272121d97621703 | |
parent | acd8b1f024969fad780e645fe0af25f45a755fb2 (diff) | |
download | cs-y13-10e454b6abf3106119c4288906656dc0b9832239.tar.gz cs-y13-10e454b6abf3106119c4288906656dc0b9832239.tar.bz2 cs-y13-10e454b6abf3106119c4288906656dc0b9832239.zip |
chore: correct typo
-rw-r--r-- | recursion/recursion.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/recursion/recursion.py b/recursion/recursion.py index 792fede..1c67958 100644 --- a/recursion/recursion.py +++ b/recursion/recursion.py @@ -27,7 +27,7 @@ def draw_underline(l: int): def test():
range_end = 15
- print(f"Printing series of factorias from 1 to {range_end}\n{draw_underline(20)}")
+ print(f"Printing series of factorials from 1 to {range_end}\n{draw_underline(20)}")
for i in range(1, range_end):
print(fact(i), end=", " if i < range_end-1 else "\n")
fib_until = 15
|