Write a function named cube that accepts a number as an argument and returns the cube of that number. Write Python statement(s) that passes 3 to this function and prints returned value.​

Respuesta :

def cube(num):

   return num*num*num

for the number 3:

def cube():

    return 3*3*3