Python 的 str.expandtabs(~)
方法返回一個字符串,其中選項卡 '\t'
的大小已調整為提供的選項卡大小。默認製表符大小為 8。
注意
'\t'
本身有 8 個字符。
'\t\t'
是 16 個字符。
'abc\tabc'
是 3 個字符 'abc'
,然後製表符將其推至 8 個字符(添加 5 個空格),最後 'abc'
添加另外 3 個字符,使字符串總長度為 11。
參數
1.tabsize
| number
| optional
指定製表符大小的數字 '\t'
。默認值為 8。
返回值
所有 '\t'
都適合指定製表符大小的字符串。
例子
要將製表符大小設置為4
:
x = 'Hi\t(*^_^*)'
x.expandtabs(4)
'Hi (*^_^*)'
請注意,在 'Hi'
之後添加了 2 個空格字符,以使製表符大小達到 4
。
相關用法
- Python String expandtabs()用法及代碼示例
- Python String endswith方法用法及代碼示例
- Python String endswith()用法及代碼示例
- Python String encode方法用法及代碼示例
- Python String encode()用法及代碼示例
- Python String count方法用法及代碼示例
- Python String isnumeric方法用法及代碼示例
- Python String Center()用法及代碼示例
- Python String zfill方法用法及代碼示例
- Python String rstrip方法用法及代碼示例
- Python String decode()用法及代碼示例
- Python String count()用法及代碼示例
- Python String join()用法及代碼示例
- Python String casefold()用法及代碼示例
- Python String isalnum()用法及代碼示例
- Python String rsplit()用法及代碼示例
- Python String isidentifier()用法及代碼示例
- Python String startswith()用法及代碼示例
- Python String rjust方法用法及代碼示例
- Python String rpartition()用法及代碼示例
- Python String rpartition方法用法及代碼示例
- Python String ljust方法用法及代碼示例
- Python String splitlines()用法及代碼示例
- Python String upper()用法及代碼示例
- Python String isprintable()用法及代碼示例
注:本文由純淨天空篩選整理自Isshin Inada大神的英文原創作品 Python String | expandtabs method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。