我在替换字段中使用负指数来输出格式化列表,但它会引发一个TypeError.代码如下:
>>> a=[1,2,3] >>> a[2] 3 >>> a[-1] 3 >>> 'The last:{0[2]}'.format(a) 'The last:3' >>> 'The last:{0[-1]}'.format(a) Traceback (most recent call last): File "",line 1,in TypeError: list indices must be integers,not str
解决方法
这就是我所说的格式字符串规范中的设计毛刺.每
the docs,
element_index ::= integer | index_string
但是,唉,-1不是“一个整数” – 这是一个表达式.一元减号运算符甚至没有特别高的优先级,因此例如打印(-2 ** 2)发出-4 – 另一个常见问题,可以说是设计毛刺(**运算符具有较高的优先级,所以首先发生上电,然后由较低优先级一元请求的变更符号 – ).
在格式字符串中不是整数(但例如表达式)中的任何位置都被视为字符串,以索引dict参数 – 例如:
$python3 -c "print('The last:{0[2+2]}'.format({'2+2': 23}))" The last:23
不知道这是否值得在Python trac中提出一个问题,但这当然是一个令人惊讶的行为:-(.