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

15 lines
133 B
Python

def foo():
print('foo')
def bar():
print('bar')
def tar():
print('tar')
a = [foo, bar, tar]
for f in a:
f()