fork download
  1. temp = '32'
  2. if temp > 85:
  3. print("Hot")
  4. elif temp > 62:
  5. print("Comfortable" )
  6. else:
  7. print("Cold" )
Runtime error #stdin #stdout #stderr 0.02s 9984KB
stdin
Standard input is empty
stdout
Standard output is empty
stderr
Traceback (most recent call last):
  File "./prog.py", line 2, in <module>
TypeError: unorderable types: str() > int()