当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Python String expandtabs()用法及代码示例


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

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

签名

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

看看,每次调用后输出是如何变化的。每个方法设置为 different-different 个空格。

# 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.






相关用法


注:本文由纯净天空筛选整理自 Python String expandtabs() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。