python怎么检测字符串是否有字母?
python中可以使用正则表达式[a-zA-Z]来匹配字符串中是否有字母。
import re str0='123m123' str1='123123' print(bool(re.search('[a-zA-Z]', str0))) print(bool(re.search('[a-zA-Z]', str1)))
输出结果:
True
False
re.search 扫描整个字符串并返回第一个成功的匹配。
函数语法:
re.search(pattern, string, flags=0)
更多Python知识请关注云海天python教程网。
来源:PY学习网:原文地址:https://www.py.cn/article.html