gpt4 book ai didi

python - Python 中变量后面的逗号 ","是什么意思?

转载 作者:太空宇宙 更新时间:2023-11-03 14:26:42 26 4
gpt4 key购买 nike

我在使用 matplotlib 记录自己的动画时传递了一些变量,这些变量是这样写的 ln, = plt.plot([], [], 'ro', animated=True)return ln, ,我不明白逗号代表什么......

它可能与元组有关,但我不明白如何,因为逗号应该位于值后面,而不是像 i = 1, 这样的变量后面

预先感谢您的任何澄清,

<小时/>

编辑:来自response @Goralight 在评论中建议。

在 Python 中,逗号使某些内容成为元组:

>>> 1
1
>>> 1,
(1,)

括号在大多数位置都是可选的。

最佳答案

您可以在 5. Data Structures - Python 3.6.3 documentation 上找到它

A tuple consists of a number of values separated by commas
[...]
Tuples are immutable, and usually contain a heterogeneous sequence of elements that are accessed via unpacking or indexing

关于python - Python 中变量后面的逗号 ","是什么意思?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47590546/

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