gpt4 book ai didi

python - 为什么python允许列表[a :b] but not list[a] if a and b are out of index range?

转载 作者:太空狗 更新时间:2023-10-29 18:30:04 24 4
gpt4 key购买 nike

我只是一个不起眼的编程蚂蚱,有一个简单的问题。

让:

x = ['this','is','a','list']

怎么会:

x[100:101]

像预期的那样输出一个空列表,但是:

x[100]

是一个错误?字符串同上,谢谢。

最佳答案

这基本上是 Python 的设计选择,对于 x[100:101] 的错误与给出空的 list 并没有真正的对错>.

请注意,x[slice(...)] 将始终返回一个容器(具有相同类型的 x),而 x[int] 将始终访问指定位置的元素。

关于python - 为什么python允许列表[a :b] but not list[a] if a and b are out of index range?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57063717/

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