I want to get a number input by the user via input()
and compare it with a specific value, i.e., 3
.
However, I have the impression my if statement doesn't work. The comparison is always False
.
Start = input()
if Start == 3:
print ("successful")