转自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…
今天写replace方法的时候的代码如下: message = "I really like dogs" message.replace('dog','cat') print(message) 本以为运行结果会是:I really like cats 出乎意料结果却是原字符串 查了一下才得知python中string是不可变的 >>> help(str.replace)Help on method_descriptor:replace(...) S.replac…