Like in:
u'Hello'
My guess is that it indicates "unicode", is it correct?
If so, since when is it available?
|
Like in:
My guess is that it indicates "unicode", is it correct? If so, since when is it available?
| |||||||||
feedback
|
|
You're right. http://docs.python.org/tutorial/introduction.html#unicode-strings It's been syntax since 2.0. | ||||
|
feedback
|
Yes.
Python 2.x. (In Python 3.x the strings use Unicode by default and there's no need for the | |||||||
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) | ||||
|
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 Before the bashing begins, let me explain. Most Python programs start out with using But, if you follow my rule, you won't have this infection (because you will already be infected). | |||||
feedback
|