如何在Python字符串中快速拼接
在Python中,字符串是一种常用的数据类型。对字符串的定义及表达方式有了了解后,接下来的学习,将为大家讲解如何使用Python来实现字符串的拼接。
1.加号拼接
1
2 |
"line-height: 1.75em;" >"font-family: 微软雅黑, "Microsoft YaHei";" >s = "Hello" + " " + "world" + " I"
print(s)
|
输出结果:
2. ( ) 拼接
1
2
3
4 |
"line-height: 1.75em;" >"font-family: 微软雅黑, "Microsoft YaHei";" >liststr = [ 'Hello' , 'World' , 'I' ]
strlist = '' .join(liststr)
print( '转换后的数据类型是:' ,type(strlist))
print( '转换后的数据是:' ,strlist)
|
输出结果:
3. 操作符拼接
1
2
3
4
5
6 |
"line-height: 1.75em;" >"font-family: 微软雅黑, "Microsoft YaHei";" >s = "{} {}" .format( 'Hello' , 'World' )
print( '输出结果是:' ,s)
s1 = "{0} {1}" .format( 'Hello' , 'world' )
print( 's1的结果是 {}' .format(s1))
s2 = "{a} {b}" .format(a= 'Hello' ,b= 'world' )
print( 's2的结果是 {}' .format(s2))
|
输出结果:
4.(%)操作符进行拼接
1
2 |
"line-height: 1.75em;" >"font-family: 微软雅黑, "Microsoft YaHei";" >s = "%s %s " %( 'Hello' , 'world' )
print(s)
|
输出结果:
5.通过()进行拼接
1
2
3
4
5
6
7 |
"line-height: 1.75em;" >"font-family: 微软雅黑, "Microsoft YaHei";" >s=(
'hello' + '\n'
''
'World' + '\n'
'!'
)
print(s)
|
输出结果:
6.F-string拼接 (该方法适用于版本)
1
2
3 |
"line-height: 1.75em;" >"font-family: 微软雅黑, "Microsoft YaHei";" >s1= "Hello"
s2= "World"
print(f '{s1} {s2}' )
|
在版本不兼容报错:
以上就是在Python中关于字符串拼接的几种简单方式,其他方式欢迎大家评论补充,一起携手向Python进阶迈进。
相关资讯
-
pythontornado是什么?怎么用?
-
掌握python访问限制
-
python私有属性访问不到吗?
-
如何使用python中的返回函数?
-
Python之xlwt和xlrd新建sheet
-
如何用pythonlist删除指定元素?