python-CSD-kursu/python-temel/cagri.fonksiyon.2.py

8 lines
108 B
Python
Raw Normal View History

2023-05-24 14:55:12 +03:00
def foo(a, b, c, d, e):
print(a, b, c, d, e)
def bar(*a):
foo(*a)
l = [10, 20, 30, 40, 50]
bar(*l)