I am getting a syntax error on my Python code. The IDLE isn't giving any tips to where the error might be.
I am running Python 3 on a Raspberry Pi 3.
inches = input "How many inches?"
cm = inches*2.54
print "That is" {} "centimeters.".format(cm)
I expected the output to ask me how many inches I wanted to convert. It then would have stated the value of centimeters that it is equal to.
Instead, it comes up with a window that says "Syntax Error." and no other information.