0
What is meant by arbitrary universal characters ? Give an example please.(in python).
2 Respostas
+ 1
Actually there is no such stuff as an arbitrary universal character,
the Python 3.8 character set has just ASCII, Unicode, UTF-8 embedded in itself.
ASCII - American Standard Code for Information Interchange, it is pretty much used in the backend processing of the computers - conversion from English to machine level
Unicode - its the most widely used and an expansive Character set, it even includes emojis in it
UTF-8 - Pretty much outdated, but some older websites send UTF-8 data, and hence usually we "encode and decode data" in Python just to make sure we don't mess up with with the Information.
Thanks.
0
Tejas Amit Sheth Tq for your explanation.