Python3 string.expandtabs()方法

2019-10-16 23:10:56
它返回製表符字元,即字串的副本。 「\t」使用空格,可以選擇使用給定的tabsize(預設8)擴充套件。

語法

str.expandtabs(tabsize=8)

引數

  • tabsize -- 指定要替換為製表符 '\t' 的字元數

  • 返回值

  • 此方法返回字串的一個副本,製表符字元,即 '\t' 已經使用空格擴充套件。

範例

#!/usr/bin/python3

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


print ("Original string: " + str)
print ("Defualt exapanded tab: " +  str.expandtabs())
print ("Double exapanded tab: " +  str.expandtabs(16))

結果

Original string: this is        string example....wow!!!
Defualt exapanded tab: this is string example....wow!!!
Double exapanded tab: this is         string example....wow!!!