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, traveler?"
name = raw_input()
print "Hi %r!" % (name)
Here's the output:
What is your name traveler?
Hi 'Karatepig'!
Is there any way to get rid of those single quotes around my name?