I\'m new to programming and I stumbled across something unsightly that I would like to remove. Here\'s my code:
def test1(): print \"What is your name, trave
Or use the "new" string formatting method:
def test1(): print "What is your name, traveler?" name = raw_input() print "Hi {0}!".format(name)