Python 官方文档:入门教程 => 点击学习
python中字符串是被标识为用引号引起来的一组连续字符,可以使用切片运算符([]和[:])来获取字符串的子集,其中索引的起始位置为字符串的开头0,末尾的索引为-1。Python中字符串操作有:创建字符串var1 = 'Hello Worl
python中字符串是被标识为用引号引起来的一组连续字符,可以使用切片运算符([]和[:])来获取字符串的子集,其中索引的起始位置为字符串的开头0,末尾的索引为-1。
Python中字符串操作有:
创建字符串
var1 = 'Hello World!'
var2 = "Hello China!"
拼接字符串
var1 = 'Hello World!'
print var1[:6]+ 'China!' //返回Hello China!
截取字符串
str = 'Hello World!'
print str[0:5] //返回 Hello
print str[7:12] //返回 World!
字符串替换
str = 'heelo world!'
str = str.replace('world!',' China!') //返回 heelo China!
--结束END--
本文标题: python中字符串是什么数据类型
本文链接: https://lsjlt.com/news/109945.html(转载时请注明来源链接)
有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341
2024-03-01
2024-03-01
2024-03-01
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
回答
回答
回答
回答
回答
回答
回答
回答
回答
回答
0