16. Lektion: Funktionen.extend()

From Attraktor Wiki
Revision as of 09:28, 20 August 2023 by Kapest (talk | contribs)
Jump to navigation Jump to search
Funktionen
  • Benannte Parameter
  • Mehrere Ergebnisse zurückgeben
def test1(a, b):
    return a, b
x, y = test1(23, 45)