I came across a scenario where I have to choose between UCS-2 and UCS-4. What is the significance of UCS-2 vs UCS-4 related to Python? How are they different?
Asked
Active
Viewed 1,650 times
3
-
You type this verbatim into google for several answers, many on SO. – pvg Mar 29 '17 at 22:37
-
This has nothing to do with Python. It's a question about the differences between UCS2 and UCS4, which can be found with a simple Google search. All Python does is use them, just like any other language. – Ken White Mar 29 '17 at 22:50
-
@KenWhite it comes up in python2.x since the internal representation can limit what a particularly compiled interpreter can represent. But also high on google hits. – pvg Mar 29 '17 at 23:11