How do we give a method a parameter?

def method_name (parameter)def method_name (*parameter)def method_name parameterdef method_name: parameter

Correct! A parameter is any variable that we use to pass input to a method, and it's declared in ().

Not quite! A parameter is any variable that we use to pass input to a method, and it's declared in ().