Python 字符串 expandtabs()方法

Python 字符串 expandtabs()方法

Python expandstabs() 方法将所有字符替换为指定的空格。默认情况下,一个制表符会扩展为8个空格,可以根据需要进行覆盖。

我们可以将1、2、4和更多传递给该方法,将制表符替换为这些空格字符的数量。

语法

expandtabs(tabsize=8)

参数

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

返回类型

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

让我们看一些示例来理解 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.

示例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.

Camera课程

Python教程

Java教程

Web教程

数据库教程

图形图像教程

办公软件教程

Linux教程

计算机教程

大数据教程

开发工具教程