📅  最后修改于: 2020-10-29 00:39:58             🧑  作者: Mango
Python字符串是Unicode字符的集合。 Python提供了许多内置函数来进行字符串操作。字符串串联是一个字符串与另一字符串合并时的过程。可以通过以下方式完成。
让我们了解以下字符串连接方法。
这是组合两个字符串的简便方法。 +运算符将多个字符串在一起。字符串必须分配给不同的变量,因为字符串是不可变的。让我们了解以下示例。
范例-
# Python program to show
# string concatenation
# Defining strings
str1 = "Hello "
str2 = "Devansh"
# + Operator is used to strings concatenation
str3 = str1 + str2
print(str3) # Printing the new combined string
输出:
Hello Devansh
说明:
在上面的示例中,变量str1存储字符串“ Hello”,变量str2存储字符串“ Devansh”。我们使用+运算符组合了这两个字符串变量,并存储在str3中。
join()方法用于连接str分隔符已连接序列元素的字符串。让我们了解以下示例。
范例-
# Python program to
# string concatenation
str1 = "Hello"
str2 = "JavaTpoint"
# join() method is used to combine the strings
print("".join([str1, str2]))
# join() method is used to combine
# the string with a separator Space(" ")
str3 = " ".join([str1, str2])
print(str3)
输出:
HelloJavaTpoint
Hello JavaTpoint
说明:
在上面的代码中,变量str1存储字符串“ Hello”,变量str2存储字符串“ JavaTpoint”。 join()方法返回存储在str1和str2中的组合字符串。 join()方法仅将list作为参数。
%运算符用于字符串格式化。它也可以用于字符串连接。让我们了解以下示例。
范例-
# Python program to demonstrate
# string concatenation
str1 = "Hello"
str2 = "JavaTpoint"
# % Operator is used here to combine the string
print("% s % s" % (str1, str2))
输出:
Hello JavaTpoint
说明-
在上面的代码中,%s表示字符串数据类型。我们将两个变量的值传递给组合字符串的%s并返回“ Hello JavaTpoint”。
Python提供了str.format()函数,该函数允许使用多个替换和值格式。它接受位置参数,并通过位置格式将字符串连接起来。让我们了解以下示例。
范例-
# Python program to show
# string concatenation
str1 = "Hello"
str2 = "JavaTpoint"
# format function is used here to
# concatenate the string
print("{} {}".format(str1, str2))
# store the result in another variable
str3 = "{} {}".format(str1, str2)
print(str3)
输出:
Hello JavaTpoint
Hello JavaTpoint
说明:
在上面的代码中,format()函数将两个字符串组合在一起并存储到str3变量中。大括号{}用作字符串的位置。