我试图在列表理解中实现三元条件运算符.我写得像这样:
lst.append(dict2obj(item)) if type(item) is not in ['int'] else lst.append(item) for item in v
其中lst是空列表,v是另一个包含各种元素的列表.编辑器在语法上显示它不正确.我究竟做错了什么?
最佳答案 >如果你想写一个列表理解你错过了[,]:
>操作符中没有.不要使用.
> type函数不返回字符串.为什么不使用isinstance(item,int)?
[lst.append(dict2obj(item)) if not isinstance(item, int) else lst.append(item)
for item in v]
如果可能,使用简单的for循环.它更具可读性.
for item in v:
if not isinstance(item, int)
lst.append(dict2obj(item))
else:
lst.append(item)