gpt4 book ai didi

python - 函数调用后的方括号

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

我是 Python 的新手,遇到了一段让我感到困惑的代码。

ts, pkt2 = capPort2.wait(1, 45)[0]

前一行让我很困惑。我理解使用两个参数调用函数 wait,但是 [0] 是什么意思或做什么?

最佳答案

表示提取函数返回的列表/元组中的第一项。

In [1]: "this is a long sentence".split()
Out[1]: ['this', 'is', 'a', 'long', 'sentence']

In [2]: "this is a long sentence".split()[0]
Out[2]: 'this'

关于python - 函数调用后的方括号,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6422228/

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