提问人:John Wick 提问时间:11/15/2023 最后编辑:Sebastian KaczmarekJohn Wick 更新时间:11/16/2023 访问量:51
在 Python 数组中重塑 fn 显示未知/无属性 [已关闭]
reshape fn in python array is showing unknown / no attribute [closed]
问:
当我在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模块已安装并正常工作。
答: 暂无答案
评论
reshape
是数组的方法,而不是列表。 函数可能会起作用,因为它首先将列表转换为数组(或至少尝试)np.reshape