I have recently made the switch to Python 3 and regular things that usually work with Python 2 don't work with Python 3. I have been able to fix the rest but I am struggling with this one. I cannot check what "type" something is.
raw = input("Please give me a number, string\
or decimal: ")
if type(raw) == int:
print("You entered a number")
elif type(raw) == float:
print("You entered a decimal")
elif type(raw) == str:
print("You entered a string")
else:
print("error please try again")
`