您好,欢迎来到微智科技网。
搜索
您的当前位置:首页list indices must be integers or slices, not tuple解决方案-python学习笔记

list indices must be integers or slices, not tuple解决方案-python学习笔记

来源:微智科技网

原因:多个[]的数组之间没加,逗号

源码:

import numpy as np

a = np.array([[1,2][3,4]])
print(a)

报错:

TypeError: list indices must be integers or slices, not tuple

修改方法: 在[1,2]后面加个英文逗号,

import numpy as np

a = np.array([[1,2],[3,4]])
print(a)


 

因篇幅问题不能全部显示,请点此查看更多更全内容

Copyright © 2019- 7swz.com 版权所有 赣ICP备2024042798号-8

违法及侵权请联系:TEL:199 18 7713 E-MAIL:2724546146@qq.com

本站由北京市万商天勤律师事务所王兴未律师提供法律服务