Latest web development tutorials

Python3 expandtabs()方法

Python3 字符串 Python3字符串


描述

expandtabs() 方法把字符串中的tab 符號('\t')轉為空格,tab 符號('\t')默認的空格數是8。

語法

expandtabs()方法語法:

str.expandtabs(tabsize=8)

參數

  • tabsize -- 指定轉換字符串中的tab 符號('\t')轉為空格的字符數。

返回值

該方法返回字符串中的tab 符號('\t')轉為空格後生成的新字符串。

實例

以下實例展示了expandtabs()方法的實例:

#!/usr/bin/python3

str = "this is\tstring example....wow!!!"

print ("原始字符串: " + str)
print ("替换 \\t 符号: " +  str.expandtabs())
print ("使用16个空格替换 \\t 符号: " +  str.expandtabs(16))

以上實例輸出結果如下:

原始字符串: this is     string example....wow!!!
替换 \t 符号: this is string example....wow!!!
使用16个空格替换 \t 符号: this is         string example....wow!!!

Python3 字符串 Python3字符串