I am using python 2.7.9
I wrote this code below and when I run in the Shell the random number displays, I type it in and then nothing else happens. I don't get an error message but I don't see why it isn't printing "Good Guess"
import random
def guessNumber():
myNum = random.randint(1,1000)
print myNum
guess = raw_input("Guess my Number:")
if guess == myNum:
print "Good Guess"