python字符串拼接有多少种方法
时间: 2023-12-03 09:04:04 浏览: 77
python3实用编程技巧进阶(1套课程)\第4章-4 PYTHON小字符串拼接 Python课程 教程 0基础学习
有多种方法可以拼接Python字符串,具体如下:
1. 使用"+"号:
str1 = "hello"
str2 = "world"
result = str1 + " " + str2
2. 使用%号:
str1 = "hello"
str2 = "world"
result = "%s %s" % (str1, str2)
3. 使用str.join方法:
str_list = ["hello", "world"]
result = " ".join(str_list)
4. 使用format方法:
str1 = "hello"
str2 = "world"
result = "{} {}".format(str1, str2)
5. 使用f-string:
str1 = "hello"
str2 = "world"
result = f"{str1} {str2}"
这些都是常见的Python字符串拼接方法,可以根据不同的需求选择合适的方法。
阅读全文