python字符串字母 通过python检测字符串的字母
TTyb 人气:0这篇文章主要介绍了通过python检测字符串的字母,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友可以参考下
代码如下
# !/usr/bin/python3.4 # -*- coding: utf-8 -*- import re a = "8a2656" b = "1514561A1321" c = "15465461654" d = "afgwgw" r = re.compile(r'^[a-zA-Z]') for item in d: result = r.match(item) if result != None: print("包含字母:" + result.group()) else: print("不包含字母")
结果
包含字母:a 包含字母:f 包含字母:g 包含字母:w 包含字母:g 包含字母:w
加载全部内容