python连接字符串的几种方法实现代码

2022-03-11 00:00:00 连接 字符串 几种方法

python链接字符串的几种方法,本文分别使用加号、join和字符串替代三种方式实现字符串连接

"""
作者:皮蛋编程(https://www.pidancode.com)
创建日期:2022/3/21
功能描述:python连接字符串的几种方法实现代码
"""
# 方法1:直接通过加号操作符相加
foobar = 'pidancode' + '.com'
print(foobar)

# 方法2:join方法
list_of_strings = ['abc', 'def', 'ghi']
foobar = ''.join(list_of_strings)
print(foobar)

# 方法3:替换
foobar = '%s%s' % ('pidancode', '.com')
print(foobar)

输出:
pidancode.com
abcdefghi
pidancode.com

以上代码在python3.9环境下测试通过

相关文章