Q. Which of the following keywords is a placeholder for the body of a function?
β
Correct Answer: (D)
pass
Explanation: "pass" can be used as below:
def myfunc():
pass
def myfunc():
pass