📜  Python string.expandtabs()方法

📅  最后修改于: 2020-10-30 06:12:05             🧑  作者: Mango

Python字符串expandtabs()方法

Python expandstabs()方法用分隔的空格替换所有字符。默认情况下,单个选项卡会扩展为8个空格,可以根据需要覆盖这些空格。

我们可以将1、2、4等传递给将用这些空格字符替换tab的方法。

签名

expandtabs(tabsize=8)

参量

tabsize:它是可选的,默认值为8。

返回类型

它返回一个修改后的字符串。

让我们看一些示例来了解expandtabs()方法。

Python字符串expandtabs()方法示例1

不指定空格的调用方法。设置为默认值。

# Python endswith() function example
# Variable declaration
str = "Welcome \t to \t the \t Javatpoint."
# Calling function
str2 = str.expandtabs()
# Displaying result
print(str2)

输出:

Welcome          to      the     Javatpoint.

Python字符串expandtabs()方法示例2

请参阅,每次调用后输出如何变化。每个方法都设置为不同数量的空格。

# Python endswith() function example
# Variable declaration
str = "Welcome \t to \t the \t Javatpoint."
# Calling function
str2 = str.expandtabs(1)
str3 = str.expandtabs(2)
str4 = str.expandtabs(4)
# Displaying result
print(str2)
print(str3)
print(str4)

输出:

Welcome   to   the   Javatpoint.
Welcome    to    the   Javatpoint.
Welcome      to      the     Javatpoint.