summaryrefslogtreecommitdiff
path: root/progs
diff options
context:
space:
mode:
authorL0P0P <grassoemanuele@live.com>2024-06-26 11:54:57 +0200
committerL0P0P <grassoemanuele@live.com>2024-06-26 11:54:57 +0200
commite09358f3648445bbf9747f40497af6221d933a99 (patch)
tree50a81c435e6c410503000f71ead6c2ee62bf6111 /progs
parent9e6c17cb44bc165e315ec039a0e09183716d2037 (diff)
Introduction to recursive function
Diffstat (limited to 'progs')
-rw-r--r--progs/test.py6
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)