Help when I write this down it gives me an error
Traceback (most recent call last):
File “python”, line 6, in
TypeError: ‘str’ object is not callable
This is what I am typing
name = raw_input(“Aidan”)
quest = raw_input(“Find gold”)
color = raw_input(“Purple”)
print "Ah, so your name is %s, your quest is %s, "
“and your favorite color is %.” “%s” (name, quest, color)