gpt4 book ai didi

python - 这种python如何索引: 'print(X_train[y_train == 0][0])' work in python?

转载 作者:太空宇宙 更新时间:2023-11-04 08:31:31 25 4
gpt4 key购买 nike

我使用#sample=60,000 和#features=784 训练数据 X_train。相应的标签 y_train 的 len(y_train)=60,000。

我不明白下面这段代码是如何工作的:

print(X_train[y_train == 0][0])

这基本上是我没有得到的索引。
我尝试了以下方法来理解它(考虑到 y_train==0 会导致什么。):

print(X_train[False True False False][0])

但它会导致错误。任何指南将不胜感激。

这是输出:enter image description here

最佳答案

测试一下!

>>> sample_list = [1, 2, 3]
>>> sample_list[True]
2
>>> sample_list[False]
1

我相信你可以推断出 True 等同于 1False 等同于 0 .

附加测试:

>>> False == 0
True
>>> True == 1
True

我相信这会有所帮助。

关于python - 这种python如何索引: 'print(X_train[y_train == 0][0])' work in python?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52613887/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com