What is wrong with this function definition?
def be_friendly(greet = "How are you!", name): pass
name is a reserved word.
name
Underscores are not allowed in function names.
A non-default argument follows a default argument.
There is nothing wrong with this function definition.