Kizspy | Question: 41
(Choose 1 answer)
What is the difference between print and return statements in a Python function?
A. print outputs a value to the console, while return exits the function and provides a value.
B. print exits the function, while return continues execution.
C. print and return are interchangeable in function execution.
D. return outputs a value to the console, while print exits the function.