Course Content
Python Functions Tutorial
Python Functions Tutorial
Challenge: Optional Arguments
Swipe to show code editor
- Set the arguments
name
andgreeting
for the function. - Set a default value for the
greeting
argument. - Run the
greet
function by passing only the positional argument during execution, and leave the optional argument as its default.
Thanks for your feedback!
Challenge: Optional Arguments
Swipe to show code editor
- Set the arguments
name
andgreeting
for the function. - Set a default value for the
greeting
argument. - Run the
greet
function by passing only the positional argument during execution, and leave the optional argument as its default.
Thanks for your feedback!