请解释这种格式代码

时间:2015-02-04 08:58:06

标签: python format

{1}代表什么

print('{0:>{1}}'.format(num, width), end='')

我看到此代码here用于解决this multiplication table problem

1 个答案:

答案 0 :(得分:1)

{1}指的是宽度变量。在这种情况下,它是对齐宽度(填充)的格式规范的一部分。

https://docs.python.org/2/library/string.html#formatspec