Как найти куб числа в питоне
def cube(x=2):
return x*x*x
print(cube(10))
Programmer of empires
def cube(x=2):
return x*x*x
print(cube(10))