Python字符串相关操作

字符串操作练习:

>>> '\'No!\',Tom didn\'t want to join them. ' #使用斜杠来避免引号冲突
"'No!',Tom didn't want to join them. "
>>> 'abc'*3
'abcabcabc'
>>> words = 'Let\'s make the world a better place!'
>>> len(words)
36
>>> words[35]
'!'
>>> words[20:33]
' a better pla'
>>> words[-10:]
'ter place!'
>>> words[1]='D' #String is immutable
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
TypeError: 'str' object does not support item assignment

 

posted @ 2017-12-31 04:10  Junfei_Wang  阅读(192)  评论(0编辑  收藏  举报