The first IF statement is being ignored and I have no idea what could cause this. I checked the indentation and everything seems fine.As you can see in the code it prints numberRolled but when I run it it justs ignores the first IF.`
import random
numberRolled = random.randint(1,6)
print numberRolled
while True:
    userGuess = raw_input("Guess a number\n")
    if userGuess == numberRolled:
        print "You got it right!"
        quitYN = raw_input("Would you like to play again?\n").lower()
        if quitYN == "yes":
            continue
        else:
            break
    elif userGuess != numberRolled:
        print "Wrong!"`