如何用```format```在python中打印粗体文本?

时间:2016-08-03 10:03:33

标签: python string-formatting

使用字符串连接符+时,我发现this solutionthis solution。但是,我无法通过新的打印方式(更多详细信息here)找到如何使用,例如print '{:10s}'.format(str)

1 个答案:

答案 0 :(得分:5)

相同的ANSI转义序列工作正常。

print('\033[1m{:10s}\033[0m'.format('foo'))