python中有哪些拼接字符串的方法 Python字符串拼接的几种方式

主机教程 建站分享 2年前 (2022-12-16) 179次浏览

文章摘要:python中有哪些拼接字符串的方法 Python字符串拼接的几种方式

python中拼接字符串的方法有:1.直接连接;2.使用加号连接;3.使用逗号连接;4.使用%连接;5.使用f […]

python中拼接字符串的方法有:1.直接连接;2.使用加号连接;3.使用逗号连接;4.使用%连接;5.使用format连接;6.使用f-string方式连接;7.使用join方法连接;

python中拼接字符串的方法有以下几种

1.直接连接字符串

print('heelo' 'world')

print('heelo''world')

2.使用加号连接字符串

>>> a,b = 'heelo','world'

>>> a + b

'heelo world'

3.使用逗号连接字符串

>>> a,b = 'heelo','world'

print(a,b)

>>> heelo world

4.使用%连接字符串

print('%s %s' % ('heelo','world'))

5.使用format连接字符串

print('{} {}' .format ('heelo','world'))

6.使用f-string方式连接字符串

>>> aa, bb = 'heelo','world'

>>> f'{aa}{bb}'

'heelo world'

7.使用join方法连接字符串

print('-'.join(['aa','bb','cc']))


声明:
若非注明,本站文章源于互联网收集整理和网友分享发布,如有侵权,请联系站长处理。
文章名称:python中有哪些拼接字符串的方法 Python字符串拼接的几种方式
文章链接:http://www.7966.org/post/11060.html
转载请注明出处

喜欢 (0)