Çift Yıldız parametre

This commit is contained in:
Mert Gör 🇹🇷 2023-05-24 10:45:19 +03:00
parent 273b638203
commit 60a5211d5a
No known key found for this signature in database
GPG Key ID: 2100A876D55B39B9

View File

@ -0,0 +1,4 @@
def foo(a, b, **c):
print("a = {}, b = {}, c = {}".format(a, b, c))
foo(b = 10, a = 20, xx = 30, yy = 40)