位置:首頁 > 腳本語言 > Python教學 > Python expandtabs()方法

Python expandtabs()方法

expandtabs()方法返回製表符,即該字符串的一個副本。 ' '已經使用的空間,可選擇使用給定的tabsize(默認8)擴展。

語法

以下是expandtabs()方法的語法:

str.expandtabs(tabsize=8)

參數

  • tabsize -- 此選項指定要替換為製表符“ ' 的字符數.

返回值

此方法返回在製表符,即通過空格進行了擴展字符串,' '的副本。

例子

下麵的例子顯示expandtabs()方法的使用。

#!/usr/bin/python

str = "this is	string 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!!!