The aim of this code is to grade the score which is between 0.0 and 1.0. below 0.6 is F, >= 0.6 is D, >= 0.7 is C, >= 0.8 is B and >= 0.9 is A; and I'm getting an error.
inp = raw_input ('Enter score between 0.0 & 1.0 here: ')
if inp == > 0.9:
print A
elif inp == > 0.8:
print B
elif inp == > 0.7:
print C
elif inp == >0.6:
print D
else inp < 0.6:
print F
== >? Also, you'll need to changeinpinto afloatand actually print strings like'A'instead of unknown variables likeA. That said, your current code's indentation appears correct.