CBSE Class 12 Computer Science
Question 27 of 103
Working with Functions — Question 3
Back to all questionsdef
Reason — The function in Python is defined as per following format :
def function_name(parameters):
statementsAccording to this format, function definition begins with keyword def.