diff options
author | L0P0P <grassoemanuele@live.com> | 2024-06-26 11:54:57 +0200 |
---|---|---|
committer | L0P0P <grassoemanuele@live.com> | 2024-06-26 11:54:57 +0200 |
commit | e09358f3648445bbf9747f40497af6221d933a99 (patch) | |
tree | 50a81c435e6c410503000f71ead6c2ee62bf6111 /progs | |
parent | 9e6c17cb44bc165e315ec039a0e09183716d2037 (diff) |
Introduction to recursive function
Diffstat (limited to 'progs')
-rw-r--r-- | progs/test.py | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/progs/test.py b/progs/test.py index 97e316f..f9140c6 100644 --- a/progs/test.py +++ b/progs/test.py @@ -1,6 +1,2 @@ def unibo(a): - if a == 3: - print("UNIBO") - -a = 3 -unibo(a) + unibo(a) |