Python 3 - 字符串 expandtabs() 方法

  • 描述

    expandtabs()方法返回其中包含制表符的字符串的副本,即。'\t' 使用空格扩展,可选择使用给定的制表符大小(默认 8)..
  • 句法

    以下是语法expandtabs()方法 -
    
    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!!!