Vidyalelo
Python · Q27

Functions in Python

Programming · Python · question 27

Q27

What will be the output of the following Python code? def cube(x): return x * x * x x = cube(3) print x

A.
9
B.
3
C.
27
Answer
D.
30

Answer: Option C

Solution

Answer: Option C
No explanation is given for this question Let's Discuss on Board