第一种方法:使用正则表达式判断字符串是否包含字母
#-*-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
暂无评论内容