您好,登錄后才能下訂單哦!
本篇文章和大家了解一下Python中expandtabs()的使用方法。有一定的參考價值,有需要的朋友可以參考一下,希望對大家有所幫助。
描述
Python expandtabs() 方法把字符串中的 tab 符號('\t')轉為空格,默認的空格數 tabsize 是 8。
語法
expandtabs()方法語法:
string.expandtabs(tabsize=8)
參數
tabsize -- 指定轉換字符串中的 tab 符號('\t')轉為空格的字符數。
返回值
該方法返回字符串中的 tab 符號('\t')轉為空格后生成的新字符串。
實例
以下實例展示了expandtabs()方法的實例:
#!/usr/bin/python string = "this is\tstring example....wow!!!"; print "Original string: " + string print "Defualt exapanded tab: " + string.expandtabs() print "Double exapanded tab: " + string.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!!!
以上就是Python中expandtabs()的使用方法的簡略介紹,當然詳細使用上面的不同還得要大家自己使用過才領會。如果想了解更多,歡迎關注億速云行業資訊頻道哦!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。