Nauč se Python > Materiály > Snake Workshop for PyLadies > Introduction to Python > Defining functions

Defining functions – Řešení [3]

def greeting(name):
    print('Welcome,', name)

greeting()
Traceback (most recent call last):
  File "<stdin>", line 9, in <module>
TypeError: greeting() missing 1 required positional argument: 'name'

Python complains about TypeError - the function pozdrav did not receive the mandatory argument name.


Toto je stránka lekce z kurzu, který probíhá nebo proběhl naživo s instruktorem.