write a code to find the cube of a number in python code example
Example: cube a number python
>>> 3*3*3
27
>>>
>>> 3**3 # This is the same as the above
27
>>>
>>> 3*3*3
27
>>>
>>> 3**3 # This is the same as the above
27
>>>