** def Funktionsname (): ** □□ ** Auszuführender Prozess **
def hello():
print("hello")
** Funktionsname () **
def hello():
print("hello")
hello()
Trennen Sie Argumente durch Kommas
def hello(name , greeting):
print(name + "Herr." + greeting)
hello("tanaka" , "Hallo")
Ausgabeergebnis Herr Tanaka, hallo
Recommended Posts