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
0
Answer:
Exact Output will be :
1000
Explanation:
You can see Output
Attachments:
Similar questions