7 lines
54 B
Python
7 lines
54 B
Python
value = 3
|
|
|
|
def print_5():
|
|
print(value)
|
|
|
|
print_5()
|