diff --git a/python-temel/other_foo.py b/python-temel/other_foo.py new file mode 100644 index 0000000..f94836a --- /dev/null +++ b/python-temel/other_foo.py @@ -0,0 +1,9 @@ +def foo(): + print('foo') + +foo() # foo + +def foo(): + print('other foo') + +foo() # other foo