欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

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

程序员文章站 2022-03-20 10:25:03
...
这篇文章详解关于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判断参数是否是合法标识符介绍的详细内容,更多请关注其它相关文章!

相关标签: python