The problem most likely is that your "2" is in quotes, which makes the game try to compare an Integer to a String (anything surrounded by double quotes is a String). Integers are never Strings, so the == will always be False.