gpt4 book ai didi

python - 冒号 ( :) in Python list index

转载 作者:IT老高 更新时间:2023-10-28 21:09:13 31 4
gpt4 key购买 nike

我是 Python 新手。我看到列表索引中使用了 : ,尤其是当它与函数调用相关联时。

Python 2.7 文档建议 lists.append 转换为 a[len(a):] = [x]。为什么需要在len(a)后加冒号?

我了解 : 用于识别字典中的键。

最佳答案

: 是切片语法的分隔符,用于“切出”序列中的子部分,[start:end]

[1:5] is equivalent to "from 1 to 5" (5 not included)
[1:] is equivalent to "1 to end"
[len(a):] is equivalent to "from length of a to end"

观看https://youtu.be/tKTZoB2Vjuk?t=41m40s在 40:00 左右,他开始解释。

也适用于元组和字符串。

关于python - 冒号 ( :) in Python list index,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4012340/

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