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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。