import random print "Hello, I'm Marvin the Marvelous, and I can read your mind!" print "To demonstrate my powers, think of a secret number from 1 to 9." raw_input("Press [ENTER] when you are ready.") number = random.randint(1,9) print "You were thinking of the number", number print "That's pretty amazing, eh?"