study Python3【4】字符串的判断
摘要:
判断类型: result为True和False str = '1122abc' str.isalnum()是数字或者字母 str = 'MDCA' str.isalpha() 是字母 str = '1122' str.isdigit()是数字 str.islower()是小写 str.isupper 阅读全文
posted @ 2022-04-21 14:24 USEGEAR 阅读(53) 评论(0) 推荐(0) 编辑