python字符串拼接常⽤⽅法⼀、%s拼接
print('%s world %s' % (hello,python))
==>hello world python
%s表⽰字符串⼀个占位符,拼接的内容在单独的%的后⾯,多个拼接的字符串⽤逗号隔开
类似占位符有 %d 代表⼀个整数、%f 代表⼀个浮点数、%x 代表⼀个16进制数
⼆、format() 拼接
print('{} world {}'.format('world','python'))
==>hello world python
这种⽅式使⽤{}作为占位符,在format⽅法中转⼊实际的拼接值与%类似
三、+号拼接
print('hello'+'world'+'python')
字符串截取拼接不固定==>hello world python
这种拼接适⽤于写死字符串如果是动态的数值则会进⾏+运算

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。