Python字符串相关操作

Posted Rhys_Wang

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了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

 

以上是关于Python字符串相关操作的主要内容,如果未能解决你的问题,请参考以下文章

Python 必知的 20 个骚操作!

学习笔记:python3,代码片段(2017)

Python代码阅读(第25篇):将多行字符串拆分成列表

python中字符串的操作方法

python文件相关操作

python 字符串相关操作