溫馨提示×

python中有哪些拼接字符串的方法

關(guān)關(guān)
174
2021-05-14 15:41:15
欄目: 編程語言

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

python中有哪些拼接字符串的方法

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']))

0