首页 > 代码库 > 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学习:字符串操作
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。