在jupyter笔记本中,我在第一个输入中声明了两个数字的列表,在第二个输入中,我试图使用list()和map()返回两个数字的多维数据集的列表, lambda。我得到这个错误。 有帮助吗?
In[91] seq = [1000, 2000]
In[92] list(map(lambda num : num**3 , seq))
---------------------------------------------------------------------------
TypeError Traceback (most recent call last)
<ipython-input-92-bf984d8458cc> in <module>
----> 1 list(map(lambda num : num**3 , seq))
TypeError: 'list' object is not callable