萬盛學電腦網

 萬盛學電腦網 >> 網絡編程 >> 編程語言綜合 >> 詳解Python中expandtabs()方法的使用

詳解Python中expandtabs()方法的使用

   這篇文章主要介紹了詳解Python中expandtabs()方法的使用,是Python入門中的基礎知識,需要的朋友可以參考下

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

  語法

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

  ?

1 str.expandtabs(tabsize=8)

  參數

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

  返回值

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

  例子

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

  ?

1 2 3 4 5 6 7 8 #!/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);

  當我們運行上面的程序,它會產生以下結果:

  ?

1 2 3 Original string: this is string example....wow!!! Defualt exapanded tab: this is string example....wow!!! Double exapanded tab: this is string example....wow!!!
copyright © 萬盛學電腦網 all rights reserved