A function in Python begins with which keyword?
def
Reason — Functions in Python are defined as per the following format :
def function_name(parameters): statements
According to this format, function definition begins with keyword def.