zoukankan      html  css  js  c++  java
  • python检测字符串的字母

    python3判断字符串内是否含有字母,并打印字母出来

    # !/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
    
  • 相关阅读:
    20171121
    20171117
    20171106
    20171031
    20171024
    20170924
    20170721
    商品的分类
    会员价格的修改
    会员价格删除
  • 原文地址:https://www.cnblogs.com/TTyb/p/6102052.html
Copyright © 2011-2022 走看看