首页 > 代码库 > python学习:字符串操作

python学习:字符串操作

1:双引号转义

<span style="font-size:18px;"><strong>print "he\"llo"</strong></span>
只需要在双引号前面加一个反斜杠。

输出结果:he"llo


2:字符串的拼接

(1)可以用+号

<span style="font-size:18px;"><strong>print "hello" +" "+ "wolrd"</strong></span>

(2)可以用逗号

<span style="font-size:18px;"><strong>print "hello","world"</strong></span>

(3)可以用*数字

<span style="font-size:18px;"><strong>print "hello"*3</strong></span>

输出结果:

hello wolrd
hello world
hellohellohello


3:字符串长度

<span style="font-size:18px;"><strong>print len("hello")</strong></span>

使用len()函数。输出结果5


4:类型转换:字符串转int

<span style="font-size:18px;"><strong>print int("111") + 1</strong></span>
输出结果 112


5:类型转换:int转字符串

<span style="font-size:18px;"><strong>print "aaa" + str(1)</strong></span>

使用函数str

输出结果:aaa1




python学习:字符串操作