
Unicode HOWTO — Python 3.13.3 documentation
1 day ago · Unicode (https://www.unicode.org/) is a specification that aims to list every character used by human languages and give each character its own unique code. The Unicode …
unicodedata — Unicode Database — Python 3.13.3 documentation
2 days ago · This module provides access to the Unicode Character Database (UCD) which defines character properties for all Unicode characters. The data contained in this database is …
Unicode Objects and Codecs — Python 3.13.3 documentation
3 days ago · Translate a string by applying a character mapping table to it and return the resulting Unicode object. Return NULL if an exception was raised by the codec. The mapping table …
Unicode HOWTO — documentação Python 2.7.18
Jul 2, 2018 · In Python source code, Unicode literals are written as strings prefixed with the ‘u’ or ‘U’ character: u'abcdefghijk'. Specific code points can be written using the \u escape …
re — Regular expression operations — Python 3.13.3 documentation
1 day ago · The default word characters in Unicode (str) patterns are Unicode alphanumerics and the underscore, but this can be changed by using the ASCII flag. Word boundaries are …
codecs — Codec registry and base classes - Python
1 day ago · Python comes with a number of codecs built-in, either implemented as C functions or with dictionaries as mapping tables. The following table lists the codecs by name, together …
2. Lexical analysis — Python 3.13.3 documentation
Python 3.0 introduced additional characters from outside the ASCII range (see PEP 3131). For these characters, the classification uses the version of the Unicode Character Database as …
Regular Expression HOWTO — Python 3.13.3 documentation
1 day ago · If the regex pattern is a string, \w will match all the characters marked as letters in the Unicode database provided by the unicodedata module. You can use the more restricted …
string — Common string operations — Python 3.13.3 …
1 day ago · This includes the characters space, tab, linefeed, return, formfeed, and vertical tab. Custom String Formatting ¶ The built-in string class provides the ability to do complex variable …
array — Efficient arrays of numeric values — Python 3.13.3 …
1 day ago · Convert the array to a Unicode string. The array must have a type 'u' or 'w'; otherwise a ValueError is raised. Use array.tobytes().decode(enc) to obtain a Unicode string from an …