标签: python for-comprehension
我发现了类似的问题,但那些问题没有解决我的问题。
当我使用时: response = [str(s) if type(s) != list else 0 for s in jsondata[j].values()]
response = [str(s) if type(s) != list else 0 for s in jsondata[j].values()]
我得到str object is not callable
str object is not callable
但是效果很好: response = [str(s) for s in jsondata[j].values()]
response = [str(s) for s in jsondata[j].values()]
我只想要修复列表。我怎么能这样做?