Why am I getting the u' part in the Output window? Is it something to do with the append function or is this because of some bug in the compiler? FYI: I'm running this code on the Codecademy's Python compiler.
CODE:
hobbies = []
# Add your code below!
for x in range(3):
hobby = raw_input("Enter your hobby")
hobbies.append(hobby)
print hobbies
RESULT:
Enter your hobby "Reading"
Enter your hobby "TV"
Enter your hobby "Football"
[u'"Reading"', u'"TV"', u'"Football"']
None