python-CSD-kursu/python-temel/global.and.nested.py
2023-06-01 16:50:29 +03:00

11 lines
113 B
Python

def bar():
print('Global bar')
def foo():
def bar():
print('Nested bar')
bar()
foo()
bar()