python-CSD-kursu/python-temel/global.and.nested.error.py

11 lines
143 B
Python
Raw Normal View History

2023-06-01 17:24:01 +03:00
def bar():
print('Global bar')
def foo():
#bar() #error
def bar():
print('Nested bar')
bar()
foo()