+1 vote
in Class 12 by kratos

Give an example for defining a function.

1 Answer

+5 votes
by kratos
 
Best answer

def functionname(parameters):

“function_docstring” function_suite

return[expression]

...