python-CSD-kursu/python-temel/function.7.py

9 lines
84 B
Python

def foo():
print('foo first')
foo()
def foo():
print('foo second')
foo()