使用变量格式化对齐?
问题描述
我正在尝试使用可变对齐方式右对齐某些文本.
I'm trying to right align some text, with a variable alignment.
例如这有效:
>>> print '{:>10}'.format('foo')
foo
但这不是:
>>> x = 10
>>> print '{:>x}'.format('foo')
解决方案
检查 docs:
您正在寻找:
>>> print '{0:>{x}}'.format('foo', x=x)
foo
相关文章