3. Pick one the following statements to correctly complete the function body in the given code
snippet
def f(number):
# Missing function body
print(f(5))
(a) return "number" (b) print(number) (C) print("number") (d) return number
11
Answers
Answered by
7
Answer:
(d) return number
Explanation:
as we just need to return a value to the calling function and print it using print ()
Answered by
0
Answer:
d) return number
Explanation:
Similar questions