Python中鏈接字符串用join仍是+

鏈接字符串的時候能夠用join也能夠用+,但這二者有沒有區別呢?python 咱們先來看一下用join和+鏈接字符串的例子數組 str1 = " ".join(["hello", "world"]) str2 = "hello " + "world" print(str1) # 輸出 「hello world" print(str2) # 輸出 「hello world" 二者的結果是同樣,
相關文章
相關標籤/搜索