[Python-ideas] Proposal for default character representation
Greg Ewing
greg.ewing at canterbury.ac.nz
Thu Oct 13 01:53:10 EDT 2016
More information about the Python-ideas mailing list
Thu Oct 13 01:53:10 EDT 2016
- Previous message (by thread): [Python-ideas] Proposal for default character representation
- Next message (by thread): [Python-ideas] Proposal for default character representation
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
Mikhail V wrote: > And decimal is objectively way more readable than hex standard character set, > regardless of how strong your habits are. That depends on what you're trying to read from it. I can look at a hex number and instantly get a mental picture of the bit pattern it represents. I can't do that with decimal numbers. This is the reason hex exists. It's used when the bit pattern represented by a number is more important to know than its numerical value. This is the case with Unicode code points. Their numerical value is irrelevant, but the bit pattern conveys useful information, such as which page and plane it belongs to, whether it fits in 1 or 2 bytes, etc. -- Greg
- Previous message (by thread): [Python-ideas] Proposal for default character representation
- Next message (by thread): [Python-ideas] Proposal for default character representation
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
More information about the Python-ideas mailing list