Exercise: Function Parameters and Arguments

Add the missing function parameter to the definition of func.
# add missing code here...
def func():
print(text) func('Hello World') # expected output: 'Hello World'
Python
Setting up Python environment...
Output