这个错误消息表明,在你的代码中调用了格式化字符串时,你提供的参数数量不足以填充格式字符串中的格式占位符。
例如,如果你有一个格式字符串 '{} {}' 并尝试使用一个参数调用它,会发生这种错误:
>>>'{} {}'.format(1)
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
TypeError: not enough arguments for format string
这个错误消息表明,在你的代码中调用了格式化字符串时,你提供的参数数量不足以填充格式字符串中的格式占位符。
例如,如果你有一个格式字符串 '{} {}' 并尝试使用一个参数调用它,会发生这种错误:
>>>'{} {}'.format(1)
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
TypeError: not enough arguments for format string