Python中拼接字符串是相當常見的操作,可以通過多種方式實現。下面我們來一一介紹。
# 方法一:使用"+"號 str1 = "Hello" str2 = "World" result = str1 + " " + str2 print(result) # 方法二:使用"%s"占位符 result = "%s %s" % (str1, str2) print(result) # 方法三:使用"{}"占位符 result = "{} {}".format(str1, str2) print(result) # 方法四:使用f-string result = f"{str1} {str2}" print(result)
代碼中,我們首先定義了兩個需要拼接的字符串變量str1和str2,在不同的拼接方法中,我們使用了不同的占位符或格式化方式,最終得到了相同的拼接結果。這些拼接方式都很方便,可以根據實際需求進行選擇。