test

>>> ord(u'忘')
24536
>>> ord(u'忘情水')

Traceback (most recent call last):
  File "<pyshell#10>", line 1, in <module>
    ord(u'忘情水')
TypeError: ord() expected a character, but string of length 3 found
>>> ord(u'忘')
24536
>>> ord('忘')

Traceback (most recent call last):
  File "<pyshell#12>", line 1, in <module>
    ord('忘')
TypeError: ord() expected a character, but string of length 2 found
>>> len('忘')
2
>>> len(u'忘')
1


python2.7中的字符编码问题 - PilgrimHui - 博客园
https://www.cnblogs.com/vipchenwei/p/6993788.html
https://www.cnblogs.com/skyflask/articles/7622991.html
https://www.2cto.com/net/201809/777712.html
https://www.cnblogs.com/geekliuyang/p/9017860.html
https://shirley-ren.iteye.com/blog/1018750
http://ascii.911cha.com/?year=汗
https://blog.csdn.net/queeniebella/article/details/71968945
http://www.cnblogs.com/liaohuiqiang/p/7247393.html
https://blog.csdn.net/vinrex/article/details/38541343
https://juejin.im/post/5ad0cdf06fb9a028dc4170e4
https://www.cnblogs.com/lmh001/p/9926231.html
https://www.bilibili.com/video/av38646492?from=search&seid=7637893469185946404
https://www.cnblogs.com/smuxiaolei/p/7410322.html
https://my.oschina.net/u/2308739/blog/524607
https://www.cnblogs.com/smuxiaolei/p/7410086.html
https://www.cnblogs.com/smuxiaolei/p/7410097.html

01
02
03
04
05
06
07
08
09
10
11
12
13
14
15
16
17
18
19
20
>>> ord(u'忘')
24536
>>> ord(u'忘情水')
 
Traceback (most recent call last):
  File "<pyshell#10>", line 1, in <module>
    ord(u'忘情水')
TypeError: ord() expected a character, but string of length 3 found
>>> ord(u'忘')
24536
>>> ord('忘')
 
Traceback (most recent call last):
  File "<pyshell#12>", line 1, in <module>
    ord('忘')
TypeError: ord() expected a character, but string of length 2 found
>>> len('忘')
2
>>> len(u'忘')
1
posted @   Gitwow  阅读(191)  评论(0编辑  收藏  举报
编辑推荐:
· 从二进制到误差:逐行拆解C语言浮点运算中的4008175468544之谜
· .NET制作智能桌面机器人:结合BotSharp智能体框架开发语音交互
· 软件产品开发中常见的10个问题及处理方法
· .NET 原生驾驭 AI 新基建实战系列:向量数据库的应用与畅想
· 从问题排查到源码分析:ActiveMQ消费端频繁日志刷屏的秘密
阅读排行:
· 《HelloGitHub》第 108 期
· Windows桌面应用自动更新解决方案SharpUpdater5发布
· 我的家庭实验室服务器集群硬件清单
· C# 13 中的新增功能实操
· Supergateway:MCP服务器的远程调试与集成工具

点击右上角即可分享
微信分享提示