Jak znaleźć kostkę liczby w Pythonie

def cube(x=2):
    return x*x*x
print(cube(10))
Programmer of empires