关于python判断参数是否是合法标识符介绍

高洛峰
发布: 2017-03-22 10:50:37
原创
2712 人浏览过

这篇文章详解关于python判断参数是否是合法标识符介绍

import string

def is_valid_identifier(param):
    alphas = string.letters + '_'
    nums = string.digits

    if len(param) > 1:
        if param[0] not in alphas:
            print 'invalid:first symbol must be alphabetic'
        else:
            for otherChar in param[1:]:
                if otherChar not in alphas + nums:
                    print 'invalid:reminding symbols must be alphanumeric'
                    break
            else:
                 print 'okay, %s is an valid identifier'%param


is_valid_identifier('class')
登录后复制

以上是关于python判断参数是否是合法标识符介绍的详细内容。更多信息请关注PHP中文网其他相关文章!

相关标签:
来源:php.cn
本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板