转自fishC论坛:http://bbs.fishc.com/forum.php?mod=viewthread&tid=38992&extra=page%3D1%26filter%3Dtypeid%26typeid%3D403 方法名 注释 capitalize() 把字符串的第一个字符改为大写,英文中用的多,roy => Roy casefold() 把整个字符串的所有字符改为小写 RoY => roy center(width) 将字符串居中,并使用空格填充至长度width…
Python认为一切皆为对象:比如我们初始化一个list时: li = list('abc') 实际上是实例化了内置模块builtins(python2中为__builtin__模块)中的list类: class list(object): def __init__(self, seq=()): # known special case of list.__init__ """ list() -> new empty list list(iterable) ->…