您的位置:

如何在 Python 中连接两个字符串

Python 字符串是 Unicode 字符的集合。Python 为字符串操作提供了许多内置函数。字符串串联是一个字符串与另一个字符串合并的过程。可以通过以下方式完成。

  • 使用+运算符
  • 使用 join()方法
  • 使用%方法
  • 使用 format()函数

让我们理解下面的字符串连接方法。

使用+运算符

这是一种组合两个字符串的简单方法。+运算符将多个字符串相加。字符串必须分配给不同的变量,因为字符串是不可变的。让我们理解下面的例子。

示例-


# 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()方法

join()方法用于连接字符串,其中字符串分隔符连接了序列元素。让我们理解下面的例子。

示例-


# 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()方法只接受列表作为参数。

使用%运算符

%运算符用于字符串格式。它也可以用于字符串连接。让我们理解下面的例子。

示例-


# 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,并返回“你好 JavaTpoint”。

使用 format()函数

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 变量中。大括号{}用作字符串的位置。