【使用Python处理文本1】

2021-06-08  本文已影响0人  西布鲁克

字符串常量

定义字符串

intro="He's a teacher"
statement='John said to me:"Can you do me a favour tonight'
intro='He\'s a teacher'
path="c:\\next"
message='''There is a very long stirng,
There is a very long stirng,
There is a very long stirng'''

字符串是不可变的有序集合

字符串支持下表索引访问,但是不支持修改字符串的操作

s="Hello"
s[0]='H'

以上代码会导致TypeError的异常

字符串函数

1.通用操作

Python以内置函数的方式提供了上述操作的功能,而并不是将它们定义为字符串方法

2.与大小写相关的操作

3.判断类方法

4.startswith和endswith

5.查找类函数

6.字符串操作方法

上一篇下一篇

猜你喜欢

热点阅读