Here's the basic code I'm working with:
hobbies = []
for i in range(3):
hobby = raw_input("What are your three favorite hobbies?")
hobbies.append(hobby)
print hobbies
My answers were "ok", "k", "ok". The hobbies list will print:
[u'ok', u'k', u'ok']
What's with the "u"?