cara menemukan kubus angka dalam python

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