Sometimes functions need specific information to help them perform their tasks.
We can pass specific information like "Zoc" to just one function, without repearting code.
>>> def greet(name):
... print(f"Hello, {name}")
...
>>> greet("Zoc")
Hello, Zoc