write a function that takes in one parameter this function should calculate and display the cube of the given number
Answers
Answered by
1
Answer:
def cube(x):
x_cube = x * * 3
return x_cube
Similar questions