Cet article explique en détail l'introduction de Python pour déterminer si un paramètre est un identifiant légal
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')
Ce qui précède est le contenu détaillé de. pour plus d'informations, suivez d'autres articles connexes sur le site Web de PHP en chinois!