Given the following function definition, what would the statement print(magic(5)) display?

Given the following function definition, what would the statement print(magic(5)) display?


def magic(num):

return num + 2 * 10


Answer: 25


Learn More :