Python expandtabs()方法
Python expandtabs()方法
expandtabs() 方法把字符串中的 tab 符号 \t 转为空格,tab 符号 \t 默认的空格数是 8,在第 0、8、16...等处给出制表符位置,如果当前位置到开始位置或上一个制表符位置的字符数不足 8 的倍数则以空格代替。
语法
expandtabs()方法语法:
str.expandtabs(tabsize=8)
参数
- tabsize -- 指定转换字符串中的 tab 符号('\t')转为空格的字符数。
返回值
该方法返回字符串中的 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 的倍数,后面的 \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 循环嵌套
- Python 文件I/O
- Python File 方法
- Python 正则表达式
- Python 多线程
- Python 搜索算法
- Python3 日期和时间
- Python3 内置函数
- Python seed() 函数
- 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()方法