當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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