Printing a string prints 'u' before the string in Python?

14,438

Solution 1

I think what you're actually surprised by here is that printing a single string doesn't do the same thing as printing a list of strings—and this is true whether they're Unicode or not:

>>> hobby1 = u'Dizziness'
>>> hobby2 = u'Vértigo'
>>> hobbies = [hobby1, hobby2]
>>> print hobby1
Dizziness
>>> print hobbies
[u'Dizziness', u'V\xe9rtigo']

Even without the u, you've got those extra quotes, not to mention that backslash escape. And if you try the same thing with str byte strings instead of unicode strings, you'll still have the quotes and escapes (plus you might have mojibake characters if your source file and your terminal have different encodings… but forget that part).


In Python, every object can have two different representations: the end-user-friendly representation, str, and the programmer-friendly representation, repr. For byte strings, those representations are Painting and 'Painting', respectively. And for Unicode strings, they're Painting and u'Painting'.

The print statement uses the str, so print hobby1 prints out Painting, with no quotes (or u, if it's Unicode).

However, the str of a list uses the repr of each of its elements, not the str. So, when you print hobbies, each element has quotes around it (and a u if it's Unicode).

This may seem weird at first, but it's an intentional design decision, and it makes sense once you get used to it. And it would be ambiguous to print out [foo, bar, baz]—is that a list of three strings, or a list of two strings, one of which has a comma in the middle of it? But, more importantly, a list is already not a user-friendly thing, no matter how you print it out. My hobbies are [Painting, Stargazing] would look just as ugly as My hobbies are ['Painting', 'Stargazing']. When you want to show a list to an end-user, you always want to format it explicitly in some way that makes sense.

Often, what you want is as simple as this:

>>> print 'Hobbies:', ', '.join(hobbies)
Hobbies: Painting, Stargazing

Or, for Unicode strings:

>>> print u'Hobbies:', u', '.join(hobbies)
Hobbies: Painting, Stargazing

Solution 2

The 'u' is not part of the string, but indicates that the string is a unicode string.

Solution 3

You're not printing the strings, you're printing the representation of the list holding the strings.

for hobby in hobbies:
  print hobby
Share:
14,438
Admin
Author by

Admin

Updated on July 28, 2022

Comments

  • Admin
    Admin over 1 year

    'u' before elements in printed list? I didn't type u in my code.

    hobbies = []
    
    #prompt user three times for hobbies
    for i in range(3):
        hobby = raw_input('Enter a hobby:')
        hobbies.append(hobby)
    
    #print list stored in hobbies
    print hobbies
    

    When I run this, it prints the list but it is formatted like this:

    Enter a hobby: Painting
    Enter a hobby: Stargazing
    Enter a hobby: Reading
    [u'Painting', u'Stargazing', u'Reading']
    None
    

    Where did those 'u' come from before each of the elements of the list?

  • SethMMorton
    SethMMorton over 10 years
    You must be the fastest typist ever! The last five questions I looked at all had long answers like this one!
  • Admin
    Admin over 10 years
    Perfect. Just the answer i was looking for!
  • abarnert
    abarnert over 10 years
    @SethMMorton: I am a pretty fast typist. But also, whenever I have to wait for a compile or a test to run or something else that takes long enough to be annoying, but not long enough to answer a new question or play a quick game or take a break, I tend to go back and re-edit the answer sitting in front of me. If SO showed complete edit history instead of collapsed, you'd be surprised…