在 Python 数组中重塑 fn 显示未知/无属性 [已关闭]

reshape fn in python array is showing unknown / no attribute [closed]

提问人:John Wick 提问时间:11/15/2023 最后编辑:Sebastian KaczmarekJohn Wick 更新时间:11/16/2023 访问量:51

问:


这个问题是由错别字或无法再现的问题引起的。虽然类似的问题可能在这里是主题,但这个问题的解决方式不太可能帮助未来的读者。

6天前关闭。

当我在vscode中调试和运行我的python文件时,它显示:

**arr2 = array.reshape(2,2)
           ^^^^^^^^^^^^^
AttributeError: 'list' object has no attribute 'reshape'**

“问题”选项卡显示:

**Cannot access member "reshape" for type "list[list[int]]"
  Member "reshape" is unknown**

numpy模块已安装并正常工作。

python 数组windows numpy visual-studio-code

评论

0赞 hpaulj 11/15/2023
reshape是数组的方法,而不是列表。 函数可能会起作用,因为它首先将列表转换为数组(或至少尝试)np.reshape
0赞 JialeDu 11/15/2023
请澄清您的具体问题或提供其他详细信息以准确说明您的需求。正如目前所写的那样,很难确切地说出你在问什么。请看如何提问最小可重复示例
0赞 John Wick 11/16/2023
问题已解决。谢谢。

答: 暂无答案