Python 基礎教程
Python expandtabs() 方法把字符串中的 tab 符號('t')轉為空格,tab 符號('t')默認的空格數(shù)是 8。
expandtabs()方法語法:
str.expandtabs(tabsize=8)
該方法返回字符串中的 tab 符號('t')轉為空格后生成的新字符串。
以下實例展示了expandtabs()方法的實例:
#!/usr/bin/python str = "this iststring 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!!!