首页上一页 1 下一页尾页 1 条记录 1/1页
如果输入的是汉字数字,比如一二三,源码会抛异常
这个程序需要进行一下修改,才能实现输入一二三不抛异常:
请将
try:
import unicodedata # 导入Unicode字符数据库模块
unicodedata.numeric(s)
return True
except (TypeError, ValueError):
pass
修改为:
try:
import unicodedata # 导入Unicode字符数据库模块
global indig
indig = unicodedata.numeric(s)
return True
except (TypeError, ValueError):
pass