Python中字符串的連接方法有以下幾種:
str1 = "Hello"
str2 = "World"
result = str1 + str2
print(result) # 輸出:HelloWorld
join()
方法:可以通過指定一個分隔符,將一個字符串列表或元組中的所有字符串連接在一起。str_list = ["Hello", "World"]
result = " ".join(str_list)
print(result) # 輸出:Hello World
%
或者format()
函數來將多個字符串連接在一起。str1 = "Hello"
str2 = "World"
result = "%s %s" % (str1, str2)
print(result) # 輸出:Hello World
str1 = "Hello"
str2 = "World"
result = "{} {}".format(str1, str2)
print(result) # 輸出:Hello World
請根據實際需求選擇最適合的方法進行字符串連接。