def cube(x=2): return x*x*x print(cube(10))
>>> 3*3*3 27 >>> >>> 3**3 # This is the same as the above 27 >>>