import re # 判断是否包含英文str = "text文本" contain_en = bool(re.search('[a-z]', str)) if contain_en: print("包含英文字符") else: print(
確定! 回上一頁