çağrı fonksiyon 10dan50ye

This commit is contained in:
Mert Gör 🇹🇷 2023-05-24 14:55:12 +03:00
parent 7cd407f959
commit 9210006dc9
No known key found for this signature in database
GPG Key ID: 2100A876D55B39B9

View File

@ -0,0 +1,8 @@
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)