python3 拼接字符串的7种方法

52次阅读
没有评论

共计 669 个字符,预计需要花费 2 分钟才能阅读完成。

  1. 使用加号运算符 “+”
str1 = "Hello"
str2 = "World"
result = str1 + " " + str2
print(result)  # Output: Hello World
  1. 使用逗号分隔的多个字符串
str1 = "Hello"
str2 = "World"
print(str1, str2)  # Output: Hello World
  1. 使用字符串的 join() 方法
str1 = "Hello"
str2 = "World"
result = " ".join([str1, str2])
print(result)  # Output: Hello World
  1. 使用 f-string 格式化字符串
str1 = "Hello"
str2 = "World"
result = f"{str1} {str2}"
print(result)  # Output: Hello World
  1. 使用字符串的 format() 方法
str1 = "Hello"
str2 = "World"
result = "{} {}".format(str1, str2)
print(result)  # Output: Hello World
  1. 使用字符串的 % 格式化
str1 = "Hello"
str2 = "World"
result = "%s %s" % (str1, str2)
print(result)  # Output: Hello World
  1. 使用列表推导式和字符串的 join() 方法
str1 = "Hello"
str2 = "World"
result = " ".join([word for word in [str1, str2]])
print(result)  # Output: Hello World

丸趣 TV 网 – 提供最优质的资源集合!

正文完
 
丸趣
版权声明:本站原创文章,由 丸趣 2023-12-21发表,共计669字。
转载说明:除特殊说明外本站除技术相关以外文章皆由网络搜集发布,转载请注明出处。
评论(没有评论)