发布时间:2020-02-27 15:18:27编辑:admin阅读(3525)
使用 xlrd 模块打开带中文的excel文件时,会报错。
FileNotFoundError: [Errno 2] No such file or directory: 'xx.xlsx'
这个时候,就需要检测文件名,是否包含中文,及时return。
中文字符的编码范围是:
\u4e00 - \u9fff
只要编码在此范围就可判断为中文字符
def is_chinese(self, string): """ 检查整个字符串是否包含中文 :param string: 需要检查的字符串 :return: bool """ for ch in string: if u'\u4e00' <= ch <= u'\u9fff': return True return True
本文参考链接:
https://segmentfault.com/a/1190000017940752?utm_source=tag-newest
上一篇: PMM--简介与部署
下一篇: Python 读取excel指定的列
48226
46981
37888
35179
29694
26362
25300
20312
19988
18444
37°
38°
78°
84°
82°
6074°
6792°
6273°
6244°
7366°