How can you check if a number is divisible by another number in python?
Take the first number % the second number. If the result is 0, the first number is divisible by the second number.
Given the side length of a cube is 3 inches, write a line of code to output the volume of the cube (Hint: the volume of a cube is its side length multiplied by itself 3 times)
print(3**3)
or
print(3 * 3 * 3)