python-CSD-kursu/python-temel/tekveciftyildiz.py
2023-05-24 10:54:09 +03:00

5 lines
146 B
Python

def foo(a, b, *c, d = 100, **e):
print('a = {}, b = {}, c = {}, d = {}, e = {}'.format(a, b, c, d, e))
foo(10, 20, 30, 40, xx = 50, yy = 60)