str字符串 expandtabs( ) 方法

描述

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

語法

expandtabs()方法語法:this

str.expandtabs(tabsize=8)

 

參數

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

返回值

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

實例

如下實例展現了expandtabs()方法的實例:code

#!/usr/bin/python3

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

print ("原始字符串: " + str)
print ("替換 \\t 符號: " +  str.expandtabs())
print ("使用16個空格替換 \\t 符號: " +  str.expandtabs(16))

以上實例輸出結果以下:blog

原始字符串: this is     string example....wow!!!
替換 \t 符號: this is string example....wow!!!
使用16個空格替換 \t 符號: this is         string example....wow!!!
相關文章
相關標籤/搜索