亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

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

關關
172
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
扎鲁特旗| 湖南省| 贵定县| 禹城市| 建平县| 高阳县| 乌拉特中旗| 万年县| 舒城县| 昭通市| 红安县| 临泽县| 瑞金市| 名山县| 北辰区| 保康县| 营口市| 贡山| 横山县| 麻江县| 乡宁县| 安丘市| 襄城县| 裕民县| 县级市| 阳西县| 桐柏县| 兴安县| 都江堰市| 湘潭县| 隆回县| 苍梧县| 惠东县| 遂平县| 普兰店市| 河间市| 墨玉县| 栖霞市| 图片| 绥棱县| 松滋市|