isdigit() isnumeric()函数
摘要:
1 二者都无法直接判断字符串中的负数, # 都无法判断字符串中的负数 c = '-55' print(c.isdigit()) print(c.isnumeric()) # isnumeric()的不同之处是可以判断汉字的数字 d = '四十五八' print(d.isnumeric()) View 阅读全文
posted @ 2020-03-13 16:22 吃我一枪 阅读(390) 评论(0) 推荐(0) 编辑