3.1Python基本字符串操作
Posted by 撒得一地 on 2016年1月30日 in python教程
上一篇: 2.14Python基本元组操作及意义
下一篇: 3.2Python字符串格式(一)
下一篇: 3.2Python字符串格式(一)
所有标准的序列操作(索引、分片、乘法、求长度、最小值、最大值和判断成员资格等)对于字符串同样适用。但是,有一点非常重要的是,字符串都是不可改变的,比如:
>>> str = "hello world!" >>> str[-6:] = "guest!" Traceback (most recent call last): File "<stdin>", line 1, in <module> TypeError: 'str' object does not support item assignment
上一篇: 2.14Python基本元组操作及意义
下一篇: 3.2Python字符串格式(一)
下一篇: 3.2Python字符串格式(一)