会员
周边
众包
新闻
博问
闪存
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
简洁模式
...
退出登录
注册
登录
王记不住
The problem is that no one is coming to the rescue.
博客园
首页
新随笔
联系
订阅
管理
2017年8月30日
Python判断字符串是否为字母或者数字
摘要: 严格解析:有除了数字或者字母外的符号(空格,分号,etc.)都会Falseisalnum()必须是数字和字母的混合isalpha()不区分大小写 str_1 = "123" str_2 = "Abc" str_3 = "123Abc" #用isdigit函数判断是否数字 print(str_1.isdigit()) Ture print(str_2.isdigit()) False pri...
阅读全文
posted @ 2017-08-30 20:52 王记不住
阅读(297980)
评论(5)
推荐(6)
编辑
公告