Computer Science, asked by pvidhb, 7 months ago

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 gangonepriyadarshini
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 ishansabu
0

Answer:

d) return number

Explanation:

Similar questions