标签: python string-formatting
使用字符串连接符+时,我发现this solution和this solution。但是,我无法通过新的打印方式(更多详细信息here)找到如何使用,例如print '{:10s}'.format(str)。
+
print '{:10s}'.format(str)
答案 0 :(得分:5)
相同的ANSI转义序列工作正常。
print('\033[1m{:10s}\033[0m'.format('foo'))