çağrı fonksiyon ankara örneği

This commit is contained in:
Mert Gör ☭ 2023-05-24 14:51:10 +03:00
parent c34ef8c83b
commit 7cd407f959
No known key found for this signature in database
GPG Key ID: 2100A876D55B39B9
1 changed files with 3 additions and 0 deletions

View File

@ -0,0 +1,3 @@
def foo(a, b, c, *d):
print('a = {}, b = {}, c = {}, d = {}'.format(a, b, c, d))
foo(100, *'ankara')