python-CSD-kursu/python-temel/other_foo.py
2023-07-02 16:58:30 +03:00

9 lines
143 B
Python

def foo():
print('foo')
foo() # foo
def foo():
print('other foo')
foo() # other foo