Like in:

u'Hello' 

My guess is that it indicates "unicode", is it correct?

If so, since when is it available?

link|improve this question

Was the Python site down? docs.python.org/reference/lexical_analysis.html#string-literals seems to be very clear. What's unclear about the Python documentation? – S.Lott Mar 17 '10 at 18:56
@S.Lott, Well is not always easy to spot the reference in the exact page and line, specially when you're new to a certain language. I find easier and faster to ask here. ( See: meta.stackoverflow.com/questions/16353/… ) Btw, It's amazing how quick does google indexed this thread, it is now the third result: google.com/search?q=u+prefix+on+python – OscarRyz Mar 17 '10 at 19:02
@Oscar Reyes: I'm sorry, but the language reference must be your first, last and only resort for this kind of thing. Otherwise, you'll stuck in perpetual n00b mode. It's very important to get a solid grip on the language reference manual to get past n00b questions and start solving real problems for people. – S.Lott Mar 17 '10 at 19:13
@S.Lott: You're right. And now I know where that language reference is :) – OscarRyz Mar 17 '10 at 19:29
feedback

4 Answers

up vote 6 down vote accepted

You're right.

http://docs.python.org/tutorial/introduction.html#unicode-strings

It's been syntax since 2.0.

link|improve this answer
feedback

My guess is that it indicates "unicode", is it correct?

Yes.

If so, since when is it available?

Python 2.x.

(In Python 3.x the strings use Unicode by default and there's no need for the u prefix.)

link|improve this answer
+1 For the 3.x note thank you – OscarRyz Mar 17 '10 at 18:47
1  
It's even a Syntax Error in Python 3 to use the u prefix. – Tim Pietzcker Mar 17 '10 at 18:53
feedback

The following should help:

http://docs.python.org/library/functions.html#unicode

http://www.amk.ca/python/howto/unicode (skip down to "Python's Unicode Support" if you're already familiar with Unicode principles)

link|improve this answer
feedback

All strings meant for humans should use u"".

I found that the following mindset helps a lot when dealing with Python string. All python manifest strings should use u"" syntax, the "" syntax is for byte arrays, only.

Before the bashing begins, let me explain. Most Python programs start out with using "" for strings. But then they need to support docs off the internet so they start using "".decode and all of a sudden they are getting exceptions everywhere about decoding this and that - all because of the use of "" for strings. In this case, Unicode does act like a virus and will wreak havoc.

But, if you follow my rule, you won't have this infection (because you will already be infected).

link|improve this answer
bash -c "echo Shouldn\\'t you use b\\\"...\\\" for byte arrays?" – KennyTM Mar 17 '10 at 19:06
@KennyTM Sounds good! Simply meant to say all strings meant for humans should use u"". – Frank Krueger Mar 17 '10 at 19:38
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.