字符串拼接技巧。
一、使用“+”符号拼接字符串
中,可以使用“+”符号将两个字符串拼接在一起。例如
str1 = "Hello"
str2 = "World"
str3 = str1 + str2t(str3)
输出结果为
HelloWorld
()方法拼接字符串
()方法。该方法将一个可迭代对象(如列表或元组)中的所有字符串拼接在一起。例如
str_list = ["Hello", "World"](str_list)t(str3)
输出结果为
HelloWorld
三、使用格式化字符串拼接字符串
g来创建格式化字符串。例如
age = 18ameamed {age} years old."t(str3)
输出结果为
amed 18 years old.
字符串拼接技巧。