python判断字符串是否包含字母

图片[1]-python判断字符串是否包含字母-uusu优素-乐高,模型,3d打印,编程

第一种方法:使用正则表达式判断字符串是否包含字母

#-*-coding:utf-8-*-importre
defcheck(str):
my_re=re.compile(r'[A-Za-z]',re.S)
res=re.findall(my_re,str)
iflen(res):
printu'含有英文字符'
else:
printu'不含有英文字符'if__name__=='__main__':
str='你好123hello'
check(str)
str1='你好123'
check(str1)
#-*-coding:utf-8-*-defcheck(str):
str_1=list(str)
foriinstr_1:
ifi.isalpha():
print'*'*15
printu'含有英文字符'
breakif__name__=='__main__':
str='你好123'
check(str)
#*********************************
str1='你好123helloworld'
check(str1)
原文来自:https://www.py.cn
© 版权声明
THE END
喜欢就支持一下吧
点赞15 分享
评论 抢沙发
头像
欢迎您留下宝贵的见解!
提交
头像

昵称

取消
昵称表情代码图片

    暂无评论内容