I was writing a simple python program in pyCharm, but this program is not working as expected! The code is:
value= input("""Assign a whole number to x, such that 23< x >25:""")
if value==24:
print("""Correct! Your are the next Bertrand Russell!!""" )
else:
print("""Wrong. Try again!""")
But even if I assign the value 24 to x, I get
Wrong. Try again!
as output!
Is there any mistake in my understanding? Or is it just a pyCharm bug?