标签: python format
{1}代表什么
{1}
print('{0:>{1}}'.format(num, width), end='')
我看到此代码here用于解决this multiplication table problem。
答案 0 :(得分:1)
{1}指的是宽度变量。在这种情况下,它是对齐宽度(填充)的格式规范的一部分。
https://docs.python.org/2/library/string.html#formatspec