Python expandtabs()方法
Python expandtabs()方法
expandtabs() 方法把字符串中的 tab 符號 \t 轉為空格,tab 符號 \t 默認的空格數(shù)是 8,在第 0、8、16...等處給出制表符位置,如果當前位置到開始位置或上一個制表符位置的字符數(shù)不足 8 的倍數(shù)則以空格代替。
語法
expandtabs()方法語法:
str.expandtabs(tabsize=8)
參數(shù)
- tabsize -- 指定轉換字符串中的 tab 符號('\t')轉為空格的字符數(shù)。
返回值
該方法返回字符串中的 tab 符號('\t')轉為空格后生成的新字符串。
實例
以下實例展示了expandtabs()方法的實例:
#!/usr/bin/python # -*- coding: UTF-8 -*- str = "codebaoku\t12345\tabc" print('原始字符串: {}'.format(str)) # 默認 8 個空格 # codebaoku 有 6 個字符,后面的 \t 填充 2 個空格 # 12345 有 5 個字符,后面的 \t 填充 3 個空格 print('替換 \\t 符號: {}'.format(str.expandtabs())) # 2 個空格 # codebaoku 有 6 個字符,剛好是 2 的 3 倍,后面的 \t 填充 2 個空格 # 12345 有 5 個字符,不是 2 的倍數(shù),后面的 \t 填充 1 個空格 print('使用 2 個空格替換 \\t 符號: {}'.format(str.expandtabs(2))) # 3 個空格 print('使用 3 個空格: {}'.format(str.expandtabs(3))) # 4 個空格 print('使用 4 個空格: {}'.format(str.expandtabs(4))) # 5 個空格 print('使用 5 個空格: {}'.format(str.expandtabs(5))) # 6 個空格 print('使用 6 個空格: {}'.format(str.expandtabs(6)))
以上實例輸出結果如下:
原始字符串: codebaoku 12345 abc 替換 \t 符號: codebaoku 12345 abc 使用 2 個空格替換 \t 符號: codebaoku 12345 abc 使用 3 個空格: codebaoku 12345 abc 使用 4 個空格: codebaoku 12345 abc 使用 5 個空格: codebaoku 12345 abc 使用 6 個空格: codebaoku 12345 abc
相關文章
- Python 循環(huán)嵌套
- Python 文件I/O
- Python File 方法
- Python 正則表達式
- Python 多線程
- Python 搜索算法
- Python3 日期和時間
- Python3 內置函數(shù)
- Python seed() 函數(shù)
- Python File fileno() 方法
- Python File writelines() 方法
- Python os.ftruncate() 方法
- Python os.removedirs() 方法
- Python os.tcsetpgrp() 方法
- Python os.unlink() 方法
- Python os.walk() 方法
- Python encode()方法
- Python isupper()方法
- Python time strftime() 方法
- Python time time()方法