python-CSD-kursu/python-temel/isimli.argumanlar.py

4 lines
233 B
Python
Raw Normal View History

2023-05-24 05:22:25 +03:00
def foo(a, b, c = 10, d = 20, e = 30, f = 40):
print("a = {}, b = {}, c = {}, d = {}, e = {}, f = {}".format(a, b, c, d, e, f))
foo(1, 2, 3, f = 100) # Burada boşuna d ve e için argüman girişi yapmadık