在 Python 中用空格替换换行符

Preet Sanghavi 2022年5月17日
在 Python 中用空格替换换行符

在本教程中,我们将学习使用一种技术在 Python 中用空格替换换行符。

在 Python 中使用 replace() 函数将换行符替换为空格

让我们使用一个带有换行符的示例字符串。

string1 = 'Hello\nWorld'

现在我们有了一个带有换行符的字符串。让我们打印我们的示例字符串。

print(string1)

上面的代码显示了以下输出,演示了新行。

Hello
World

我们现在将使用 replace() 函数将换行符替换为空格。我们将字符串作为参数传递给函数,并将新的结果字符串存储在新变量中。

string2 = string1.replace('\n', ' ')

上面的代码将用空格替换我们字符串中的所有换行符。我们得到一个没有行字符的字符串。

我们现在将打印新字符串以查看输出。

print(string2)

我们在打印新字符串时得到以下输出。

Hello World

我们可以看到已经添加了一个空格来代替换行符。

因此,我们可以通过上述方法方便地将 Python 中的换行符替换为空格。

Preet Sanghavi avatar Preet Sanghavi avatar

Preet writes his thoughts about programming in a simplified manner to help others learn better. With thorough research, his articles offer descriptive and easy to understand solutions.

LinkedIn GitHub

相关文章 - Python String