This python3.3 code on win 7, why I got error:
import random
guesses_made = 0
name = raw_input('Hello! What is your name?\n')
number = random.randint(1, 20)
print "Well, {0}, I am thinking of a number between 1 and 20" # error here !!!
**print "Well, {0}, I am thinking of a number between 1 and 20"
^
SyntaxError: invalid syntax**
Thanks !!!