要連接兩個字符串并輸出,可以使用加號 + 運算符或者使用字符串的 join() 方法。
+
join()
使用加號運算符:
str1 = "Hello" str2 = "World" result = str1 + " " + str2 print(result)
使用join()方法:
str1 = "Hello" str2 = "World" result = " ".join([str1, str2]) print(result)
兩種方法都會輸出:
Hello World
億速云公眾號
手機網站二維碼
Copyright ? Yisu Cloud Ltd. All Rights Reserved. 2018 版權所有
廣州億速云計算有限公司粵ICP備17096448號-1 粵公網安備 44010402001142號增值電信業務經營許可證編號:B1-20181529