全部博文(30)
发布时间:2013-12-18 15:18:27
#!/usr/bin/pythonimport stringalphas = string.letters + '_'nums = string.digitsprint 'Welcome to the Identifier Checker v1.0'print 'Testees must be at least 2 chars long.'myInput = raw_input('Identifier to test?')if len(myInput) > 1: if myInput[0] not in alph.........【阅读全文】