1 字符串在python中具有不可变性--创建后不能改变(例如:不能通过对某一位位置进行赋值而改变字符串)
2 查看字符串相关文档可以利用 help(str)来查看,同理 help(list) , help(dict) , help(set) ,help(tuple) 或者用 dir(tuple)可以查看 内置类支持的操作,help这种方法更为详细一些.
3 s = 'spam' help(s.replace) 可以查看str下replace的详细用法
4 In [39]: import re
In [40]: match = re.match('Hello[ \t]*(.*)world', 'Hello Python world')
In [41]: match.group(1)
Out[41]: 'Python '