This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author ningyidu
Recipients ningyidu
Date 2020-03-05.15:19:30
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1583421570.3.0.829313669448.issue39864@roundup.psfhosted.org>
In-reply-to
Content
This is a simple test:

test=np.zeros((2,3,4))
print(test[1][3][1])

IndexError                                Traceback (most recent call last)
<ipython-input-13-61c3cf4c90fc> in <module>
      1 test=np.zeros((2,3,4))
----> 2 print(test[1][3][1])

IndexError: index 3 is out of bounds for axis 0 with size 3
History
Date User Action Args
2020-03-05 15:19:30ningyidusetrecipients: + ningyidu
2020-03-05 15:19:30ningyidusetmessageid: <1583421570.3.0.829313669448.issue39864@roundup.psfhosted.org>
2020-03-05 15:19:30ningyidulinkissue39864 messages
2020-03-05 15:19:30ningyiducreate