16. Lektion: Funktionen.extend()
Funktionen
- Benannte Parameter
- Mehrere Ergebnisse zurückgeben
def test1(a, b):
return a, b
x, y = test1(23, 45)
- you can pass positional or keyword arguments to your functions.
def test1(a, b):
return a, b
x, y = test1(23, 45)