python判断是否包含英文字符
Posted Jumpkin1122
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python判断是否包含英文字符相关的知识,希望对你有一定的参考价值。
import re # 判断是否包含英文 str = "text文本" contain_en = bool(re.search(‘[a-z]‘, str)) if contain_en: print("包含英文字符") else: print("不包含英文字符")
以上是关于python判断是否包含英文字符的主要内容,如果未能解决你的问题,请参考以下文章
Python代码阅读(第38篇):根据谓词函数和属性字符串构造判断函数