Examveda

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

D. 30

Answer: Option C


This Question Belongs to Python Program >> Functions In Python

Join The Discussion

Related Questions on Functions in Python