Veuillez noter qu'il ne descend pas trop.
Vous pouvez voir que Python2 et Python3 gèrent les chaînes différemment. Python3 est confortable car il n'y a pas de conversion entre la chaîne de caractères Unicode et la chaîne de caractères d'octets.
python2
#L'entrée / sortie standard est UTF-8 hypothèses
# Python2.7
$ python -c "import sys;print(u'\"'.join(unicode(sys.argv[1], 'utf-8')))"À travers cela, il y a Kanharuntayo ぉ ぉ ぉ
#Quand"Oh"Shi"main"Alors"Cette"main"Ou"Hmm"Est"Ru"Hmm"Ta"Yo"Mm"Mm"Mm"Mm
# Python3.3
$ python -c "import sys;print('\"'.join(sys.argv[1]))"À travers cela, il y a Kanharuntayo ぉ ぉ ぉ
#Quand"Oh"Shi"main"Alors"Cette"main"Ou"Hmm"Est"Ru"Hmm"Ta"Yo"Mm"Mm"Mm"Mm
Recommended Posts