摘要:
# coding =utf-8 ## 类的定义 ##-------------------------------------------------- class Employee: empCount = 0 ## 构造函数,函数名必须用: __init__ def __init__(self, name, salary): self.name = name ... 阅读全文
摘要:
# coding=utf-8 s='ADVERSARIAL EXAMPLES IN THE PHYSICAL WORLD' print s.lower() #所有转小写 print s.upper() #所有转大写 print s.capitalize() #行首字母大写,其他小写 print s.title() #每个单词首字母大写,其他小写 阅读全文