Computer Science, asked by Jtherocker, 5 months ago

22)Show the output of following code.
def cube(n):
cn = n*n*n
return cn
x=10
y = cube(x)
print (y)​

Answers

Answered by dishant671
0

Answer:

Exact Output will be :

1000

Explanation:

You can see Output

Attachments:
Similar questions