Python 中有多種方法可以合并字符串并輸出。
str1 = "Hello"
str2 = "World"
result = str1 + str2
print(result) # 輸出:HelloWorld
str1 = "Hello"
str2 = "World"
result = "{}{}".format(str1, str2)
print(result) # 輸出:HelloWorld
str1 = "Hello"
str2 = "World"
result = f"{str1}{str2}"
print(result) # 輸出:HelloWorld
這些都是基本的合并字符串并輸出的方法,根據具體的需求和使用場景,可以選擇最適合的方法進行字符串合并。