How do you make the exponent cubed in Python while printing.
e.g. print ("3***cubed***")
I don't want to cube the number - I want the sign
Thanks in advance
I want to make this volume calculator:
I want it to print cubed at the end when it tells you the answer:
height = input("Enter the height: ")
if int(height) <0:
print("Please enter a number larger than 0")
height = input("Enter the height: ")
if not int(height) < 2**31 - 1:
print("You have not entered a number")
height = input("Enter the height: ")
height = int(height)
width = input("Enter the width: ")
if int(height) <0:
print("Please enter a number larger than 0")
height = input("Enter the height: ")
if not int(height) < 2**31 - 1:
print("You have not entered a number")
height = input("Enter the height: ")
width = int(width)
length = input("Enter the length: ")
if int(length) <0:
print("Please enter a number larger than 0")
length = input("Enter the height: ")
if not int(length) < 2**31 - 1:
print("You have not entered a number")
length = input("Enter the length: ")
length = int(length)
volume = height*width*length
print ("The volume of the cuboid is" + str(volume) +"cm"