0
Hot Cold using ELIF
I'm new to python. Just finished the section of ELIF. I was thinking that with this command I should be able to set up something like a hot cold game. Currently I'm just trying to run the code to give me the correct answer based on the number I input then I will try building in warmer or colder as I get closer to the chosen number. Why does this not work? Is it even possible with ELIF? x=input elif x == 3: print('correct') elif x > 3: print ("too high") elif x < 3: print('too low')
3 Answers
+ 4
x=input()
if x==3:
print("correct")
elif x>3:
print("too High")
elif x<3:
print('too low')
else:
#cĂłdigo o lo que sea
0
I forgot the ()
0
I updated the code. I'm getting this error.
Traceback (most recent call last):
File "./Playground/file0.py", line 4, in <module>
elif x > 3:
TypeError: '>' not supported between instances of 'str' and 'int'