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 endswith()用法及代码示例
- Python String Center()用法及代码示例
- Python String isnumeric()用法及代码示例
- Python String join()用法及代码示例
- Python String isalnum()用法及代码示例
- Python String rsplit()用法及代码示例
- Python String startswith()用法及代码示例
- Python String upper()用法及代码示例
- Python String splitlines()用法及代码示例
- Python String isprintable()用法及代码示例
- Python String translate()用法及代码示例
- Python String split()用法及代码示例
- Python String format_map()用法及代码示例
- Python String zfill()用法及代码示例
- Python String isspace()用法及代码示例
- Python String Encode()用法及代码示例
- Python String index()用法及代码示例
- Python String rindex()用法及代码示例
- Python String swapcase()用法及代码示例
- Python String rjust()用法及代码示例
注:本文由纯净天空筛选整理自 Python String expandtabs() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。