I want to get a number input by the user via input() and compare it with a specific value, i.e., 3.
input()
3
However, I have the impression my if statem
Python 3 input function returns string.
Try like this
start = input("-->: ") if start == "3": print("successful")