您当前的位置:首页 > 计算机 > 编程开发 > Python

Python:字符串拼接格式化的方法

时间:05-17来源:作者:点击数:

1、+加号

str1 = "Hello"
str2 = "World"

result = str1 + " " + str2

print(result)  
# 输出:Hello World

2、join列表

str1 = "Hello"
str2 = "World"

result = " ".join([str1, str2])

print(result)  
# 输出:Hello World

3、%s占位符

str1 = "Hello"
str2 = "World"

result = "%s %s" % (str1, str2)

print(result)
# 输出:Hello World

4、format方法

str1 = "Hello"
str2 = "World"

# 直接写占位符
result = "{} {}".format(str1, str2)

# 位置参数
result = "{0} {1}".format(str1, str2)

# 关键字参数
result = "{arg1} {arg2}".format(arg1=str1, arg2=str2)

print(result)
# 输出:Hello World

5、format_map方法

str1 = "Hello"
str2 = "World"

data = {
    'arg1': str1,
    'arg2': str2
}

# 类似 format 的关键字参数
result = "{arg1} {arg2}".format_map(data)

print(result)
# 输出:Hello World

6、f-string模板字符串

版本要求:Python>=3.6

str1 = "Hello"
str2 = "World"

result = f"{str1} {str2}"

print(result)  
# 输出:Hello World
方便获取更多学习、工作、生活信息请关注本站微信公众号城东书院 微信服务号城东书院 微信订阅号
推荐内容
相关内容
栏目更新
栏目热门