p
y
c
h
a
l
l
e
n
g
e
r
Home
Python Basics
Functions I
Exercise: Function Parameters and Arguments
Exercise: Function Parameters and Arguments
Add the missing function parameter to the definition of
func
.
Premium
reset
def greet(name): return f"Hello, {name}!" print(greet("Erik"))
Python
Setting up Python environment...
Output