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




郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。