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!!!