python运行时出现“TypeError: 'map' object is not subscriptable”错误
发布网友
发布时间:2022-05-01 17:35
我来回答
共2个回答
热心网友
时间:2023-10-23 08:55
有问题就google,一般能找到解决的办法。
map() doesn't return a list, it returns a map object.
You need to call list(map) if you want it to be a list again.
原文:http://stackoverflow.com/questions/6800481/python-map-object-is-not-subscriptable
热心网友
时间:2023-10-23 08:55
试试matrixR = tuple(matrixR)