要將兩個字符串變量合在一起,可以使用字符串拼接操作符 “+” ,示例如下:
str1 = "Hello"
str2 = "World"
result = str1 + str2
print(result) # 輸出:HelloWorld
你也可以使用字符串的 join() 方法,將多個字符串合并成一個字符串,示例如下:
str1 = "Hello"
str2 = "World"
result = ''.join([str1, str2])
print(result) # 輸出:HelloWorld
另外,你還可以使用 f-string 或者格式化字符串的方式將兩個字符串合在一起,示例如下:
str1 = "Hello"
str2 = "World"
result = f"{str1}{str2}"
print(result) # 輸出:HelloWorld
需要注意的是,這些示例中都是將兩個字符串直接拼接在一起,如果你需要在兩個字符串之間添加其他字符或空格,可以在拼接時加上,例如 result = str1 + " " + str2
或者 result = f"{str1} {str2}"
。