3

我正在使用 python 版本 2.7.3 并试图以某种格式打印出一些信息。

final="<".join('< {} >'.format(' '.join(items)) for items in list)

但是我在格式错误中得到了一个 valueError 零长度字段名称,这是因为我的 python 版本不允许某些语法吗?

4

1 回答 1

11

Pyhon2.6 requires you to put a positional argument in the {}

'< {0} >'.format(' '.join(items))
于 2013-03-11T20:06:28.117 回答