python-CSD-kursu/python-temel/other_foo.py

10 lines
143 B
Python
Raw Normal View History

2023-07-02 13:58:30 +00:00
def foo():
print('foo')
foo() # foo
def foo():
print('other foo')
foo() # other foo