Win7下 Python中文正则的奇异表现

首先贴Win32下的直接Python shell下的测试结果:

Python 2.7.6 (default, Nov 10 2013, 19:24:18) [MSC v.1500 32 bit (Intel)] on win32
Type "copyright", "credits" or "license()" for more information.
>>> import re
>>> print re.match(ur'[\u4e00-\u9fa5]+',u"中国")
None
>>> 
>>> import sys
>>> sys.getdefaultencoding()
'ascii'
>>> str1=u"中国"
>>> str1
u'\xd6\xd0\xb9\xfa'

接着来先cmd,再python命令进入python交互环境下的结果:

Microsoft Windows [版本 6.1.7601]
版权所有 (c) 2009 Microsoft Corporation。保留所有权利。

C:\Users\user>python
Python 2.7.6 (default, Nov 10 2013, 19:24:18) [MSC v.1500 32 bit (Intel)] on win32
Type "help", "copyright", "credits" or "license" for more information.
>>> import re
>>> print re.match(ur'[\u4e00-\u9fa5]+',u"中国")
<_sre.SRE_Match object at 0x00522C28>
>>> import sys
>>> sys.getdefaultencoding()
'ascii'
>>> str1=u"中国"
>>> str1
u'\u4e2d\u56fd'

生产应用中的问题好像是因为codeing设置的添加而解决,和上面这个问题有一定关系,以上形式是交互环境下测试所得的结果。

参考资料:http://www.limijd.me/2013/02/python%E9%87%8Cunicode%E5%92%8Cutf-8%E7%9A%84%E5%8C%BA%E5%88%AB/


为什么是这样:Python 3.14.0 (tags/v3.14.0:ebf955d, Oct 7 2025, 10:15:03) [MSC v.1944 64 bit (AMD64)] on win32 Enter "help" below or click "Help" above for more information. ==================== RESTART: D:\Users\lenovo\Desktop\12.py ==================== 🚀 开始分析:2020.xlsx 🔄 正在读取 Excel 文件... ✅ 找到标题行:第 4 行 ✅ 成功提取 3 个部门,前5个是:['中间投入', '增加值', '总投入'] 🔍 正在提取中间使用矩阵 Z... ✓ 提取 Z 矩阵成功:(3, 3) ✓ 提取总产出成功:均值=23596.3 亿元 📊 数据统计 部门数量: 3 总产出总量: 7.1 万亿元 中间使用总和: 0.8 万亿元 💡 影响力 Top 5(带动能力强): 总投入: 1.00 增加值: 1.00 中间投入: 1.00 🔁 感应度 Top 5(易被拉动): 增加值: 1.00 总投入: 1.00 中间投入: 1.00 ⚠️ 未找到‘农产品’部门 ✅ 结果已导出至:IO_Results_2020.xlsx Warning (from warnings module): File "D:\python\Lib\site-packages\seaborn\utils.py", line 61 fig.canvas.draw() UserWarning: Glyph 30452 (\N{CJK UNIFIED IDEOGRAPH-76F4}) missing from font(s) DejaVu Sans. Warning (from warnings module): File "D:\python\Lib\site-packages\seaborn\utils.py", line 61 fig.canvas.draw() UserWarning: Glyph 25509 (\N{CJK UNIFIED IDEOGRAPH-63A5}) missing from font(s) DejaVu Sans. Warning (from warnings module): File "D:\python\Lib\site-packages\seaborn\utils.py", line 61 fig.canvas.draw() UserWarning: Glyph 28040 (\N{CJK UNIFIED IDEOGRAPH-6D88}) missing from font(s) DejaVu Sans. Warning (from warnings module): File "D:\python\Lib\site-packages\seaborn\utils.py", line 61 fig.canvas.draw() UserWarning: Glyph 32791 (\N{CJK UNIFIED IDEOGRAPH-8017}) missing from font(s) DejaVu Sans. Warning (from warnings module): File "D:\python\Lib\site-packages\seaborn\utils.py", line 61 fig.canvas.draw() UserWarning: Glyph 31995 (\N{CJK UNIFIED IDEOGRAPH-7CFB}) missing from font(s) DejaVu Sans. Warning (from warnings module): File "D:\python\Lib\site-packages\seaborn\utils.py", line 61 fig.canvas.draw() UserWarning: Glyph 25968 (\N{CJK UNIFIED IDEOGRAPH-6570}) missing from font(s) DejaVu Sans. Warning (from warnings module): File "D:\python\Lib\site-packages\seaborn\utils.py", line 61 fig.canvas.draw() UserWarning: Glyph 30697 (\N{CJK UNIFIED IDEOGRAPH-77E9}) missing from font(s) DejaVu Sans. Warning (from warnings module): File "D:\python\Lib\site-packages\seaborn\utils.py", line 61 fig.canvas.draw() UserWarning: Glyph 38453 (\N{CJK UNIFIED IDEOGRAPH-9635}) missing from font(s) DejaVu Sans. Warning (from warnings module): File "D:\python\Lib\site-packages\seaborn\utils.py", line 61 fig.canvas.draw() UserWarning: Glyph 21069 (\N{CJK UNIFIED IDEOGRAPH-524D}) missing from font(s) DejaVu Sans. Warning (from warnings module): File "D:\Users\lenovo\Desktop\12.py", line 173 plt.tight_layout() UserWarning: Glyph 21015 (\N{CJK UNIFIED IDEOGRAPH-5217}) missing from font(s) DejaVu Sans. Warning (from warnings module): File "D:\Users\lenovo\Desktop\12.py", line 173 plt.tight_layout() UserWarning: Glyph 26114 (\N{CJK UNIFIED IDEOGRAPH-6602}) missing from font(s) DejaVu Sans. Warning (from warnings module): File "D:\Users\lenovo\Desktop\12.py", line 173 plt.tight_layout() UserWarning: Glyph 24789 (\N{CJK UNIFIED IDEOGRAPH-60D5}) missing from font(s) DejaVu Sans. Warning (from warnings module): File "D:\Users\lenovo\Desktop\12.py", line 173 plt.tight_layout() UserWarning: Glyph 22827 (\N{CJK UNIFIED IDEOGRAPH-592B}) missing from font(s) DejaVu Sans. Warning (from warnings module): File "D:\Users\lenovo\Desktop\12.py", line 173 plt.tight_layout() UserWarning: Glyph 36870 (\N{CJK UNIFIED IDEOGRAPH-9006}) missing from font(s) DejaVu Sans. Warning (from warnings module): File "D:\Users\lenovo\Desktop\12.py", line 173 plt.tight_layout() UserWarning: Glyph 30697 (\N{CJK UNIFIED IDEOGRAPH-77E9}) missing from font(s) DejaVu Sans. Warning (from warnings module): File "D:\Users\lenovo\Desktop\12.py", line 173 plt.tight_layout() UserWarning: Glyph 38453 (\N{CJK UNIFIED IDEOGRAPH-9635}) missing from font(s) DejaVu Sans. Warning (from warnings module): File "D:\Users\lenovo\Desktop\12.py", line 173 plt.tight_layout() UserWarning: Glyph 21069 (\N{CJK UNIFIED IDEOGRAPH-524D}) missing from font(s) DejaVu Sans. Warning (from warnings module): File "D:\Users\lenovo\Desktop\12.py", line 174 plt.savefig(HEATMAP_PNG, dpi=150, bbox_inches='tight') UserWarning: Glyph 30452 (\N{CJK UNIFIED IDEOGRAPH-76F4}) missing from font(s) DejaVu Sans. Warning (from warnings module): File "D:\Users\lenovo\Desktop\12.py", line 174 plt.savefig(HEATMAP_PNG, dpi=150, bbox_inches='tight') UserWarning: Glyph 25509 (\N{CJK UNIFIED IDEOGRAPH-63A5}) missing from font(s) DejaVu Sans. Warning (from warnings module): File "D:\Users\lenovo\Desktop\12.py", line 174 plt.savefig(HEATMAP_PNG, dpi=150, bbox_inches='tight') UserWarning: Glyph 28040 (\N{CJK UNIFIED IDEOGRAPH-6D88}) missing from font(s) DejaVu Sans. Warning (from warnings module): File "D:\Users\lenovo\Desktop\12.py", line 174 plt.savefig(HEATMAP_PNG, dpi=150, bbox_inches='tight') UserWarning: Glyph 32791 (\N{CJK UNIFIED IDEOGRAPH-8017}) missing from font(s) DejaVu Sans. Warning (from warnings module): File "D:\Users\lenovo\Desktop\12.py", line 174 plt.savefig(HEATMAP_PNG, dpi=150, bbox_inches='tight') UserWarning: Glyph 31995 (\N{CJK UNIFIED IDEOGRAPH-7CFB}) missing from font(s) DejaVu Sans. Warning (from warnings module): File "D:\Users\lenovo\Desktop\12.py", line 174 plt.savefig(HEATMAP_PNG, dpi=150, bbox_inches='tight') UserWarning: Glyph 25968 (\N{CJK UNIFIED IDEOGRAPH-6570}) missing from font(s) DejaVu Sans. Warning (from warnings module): File "D:\Users\lenovo\Desktop\12.py", line 174 plt.savefig(HEATMAP_PNG, dpi=150, bbox_inches='tight') UserWarning: Glyph 30697 (\N{CJK UNIFIED IDEOGRAPH-77E9}) missing from font(s) DejaVu Sans. Warning (from warnings module): File "D:\Users\lenovo\Desktop\12.py", line 174 plt.savefig(HEATMAP_PNG, dpi=150, bbox_inches='tight') UserWarning: Glyph 38453 (\N{CJK UNIFIED IDEOGRAPH-9635}) missing from font(s) DejaVu Sans. Warning (from warnings module): File "D:\Users\lenovo\Desktop\12.py", line 174 plt.savefig(HEATMAP_PNG, dpi=150, bbox_inches='tight') UserWarning: Glyph 21069 (\N{CJK UNIFIED IDEOGRAPH-524D}) missing from font(s) DejaVu Sans. Warning (from warnings module): File "D:\Users\lenovo\Desktop\12.py", line 174 plt.savefig(HEATMAP_PNG, dpi=150, bbox_inches='tight') UserWarning: Glyph 21015 (\N{CJK UNIFIED IDEOGRAPH-5217}) missing from font(s) DejaVu Sans. Warning (from warnings module): File "D:\Users\lenovo\Desktop\12.py", line 174 plt.savefig(HEATMAP_PNG, dpi=150, bbox_inches='tight') UserWarning: Glyph 26114 (\N{CJK UNIFIED IDEOGRAPH-6602}) missing from font(s) DejaVu Sans. Warning (from warnings module): File "D:\Users\lenovo\Desktop\12.py", line 174 plt.savefig(HEATMAP_PNG, dpi=150, bbox_inches='tight') UserWarning: Glyph 24789 (\N{CJK UNIFIED IDEOGRAPH-60D5}) missing from font(s) DejaVu Sans. Warning (from warnings module): File "D:\Users\lenovo\Desktop\12.py", line 174 plt.savefig(HEATMAP_PNG, dpi=150, bbox_inches='tight') UserWarning: Glyph 22827 (\N{CJK UNIFIED IDEOGRAPH-592B}) missing from font(s) DejaVu Sans. Warning (from warnings module): File "D:\Users\lenovo\Desktop\12.py", line 174 plt.savefig(HEATMAP_PNG, dpi=150, bbox_inches='tight') UserWarning: Glyph 36870 (\N{CJK UNIFIED IDEOGRAPH-9006}) missing from font(s) DejaVu Sans. Warning (from warnings module): File "D:\python\Lib\tkinter\__init__.py", line 876 func(*args, **kw) UserWarning: Glyph 30452 (\N{CJK UNIFIED IDEOGRAPH-76F4}) missing from font(s) DejaVu Sans. Warning (from warnings module): File "D:\python\Lib\tkinter\__init__.py", line 876 func(*args, **kw) UserWarning: Glyph 25509 (\N{CJK UNIFIED IDEOGRAPH-63A5}) missing from font(s) DejaVu Sans. Warning (from warnings module): File "D:\python\Lib\tkinter\__init__.py", line 876 func(*args, **kw) UserWarning: Glyph 28040 (\N{CJK UNIFIED IDEOGRAPH-6D88}) missing from font(s) DejaVu Sans. Warning (from warnings module): File "D:\python\Lib\tkinter\__init__.py", line 876 func(*args, **kw) UserWarning: Glyph 32791 (\N{CJK UNIFIED IDEOGRAPH-8017}) missing from font(s) DejaVu Sans. Warning (from warnings module): File "D:\python\Lib\tkinter\__init__.py", line 876 func(*args, **kw) UserWarning: Glyph 31995 (\N{CJK UNIFIED IDEOGRAPH-7CFB}) missing from font(s) DejaVu Sans. Warning (from warnings module): File "D:\python\Lib\tkinter\__init__.py", line 876 func(*args, **kw) UserWarning: Glyph 25968 (\N{CJK UNIFIED IDEOGRAPH-6570}) missing from font(s) DejaVu Sans. Warning (from warnings module): File "D:\python\Lib\tkinter\__init__.py", line 876 func(*args, **kw) UserWarning: Glyph 30697 (\N{CJK UNIFIED IDEOGRAPH-77E9}) missing from font(s) DejaVu Sans. Warning (from warnings module): File "D:\python\Lib\tkinter\__init__.py", line 876 func(*args, **kw) UserWarning: Glyph 38453 (\N{CJK UNIFIED IDEOGRAPH-9635}) missing from font(s) DejaVu Sans. Warning (from warnings module): File "D:\python\Lib\tkinter\__init__.py", line 876 func(*args, **kw) UserWarning: Glyph 21069 (\N{CJK UNIFIED IDEOGRAPH-524D}) missing from font(s) DejaVu Sans. Warning (from warnings module): File "D:\python\Lib\tkinter\__init__.py", line 876 func(*args, **kw) UserWarning: Glyph 21015 (\N{CJK UNIFIED IDEOGRAPH-5217}) missing from font(s) DejaVu Sans. Warning (from warnings module): File "D:\python\Lib\tkinter\__init__.py", line 876 func(*args, **kw) UserWarning: Glyph 26114 (\N{CJK UNIFIED IDEOGRAPH-6602}) missing from font(s) DejaVu Sans. Warning (from warnings module): File "D:\python\Lib\tkinter\__init__.py", line 876 func(*args, **kw) UserWarning: Glyph 24789 (\N{CJK UNIFIED IDEOGRAPH-60D5}) missing from font(s) DejaVu Sans. Warning (from warnings module): File "D:\python\Lib\tkinter\__init__.py", line 876 func(*args, **kw) UserWarning: Glyph 22827 (\N{CJK UNIFIED IDEOGRAPH-592B}) missing from font(s) DejaVu Sans. Warning (from warnings module): File "D:\python\Lib\tkinter\__init__.py", line 876 func(*args, **kw) UserWarning: Glyph 36870 (\N{CJK UNIFIED IDEOGRAPH-9006}) missing from font(s) DejaVu Sans. 🎉 全部完成!输出文件: • IO_Results_2020.xlsx • IO_Matrix_Heatmap.png KeyboardInterrupt KeyboardInterrupt
10-24
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值