x,= ... - 这个尾随逗号是逗号运算符吗?

时间:2013-04-16 12:48:22

标签: python matplotlib tuples

我不明白变量行后的逗号是什么,表示:http://matplotlib.org/examples/animation/simple_anim.html

line, = ax.plot(x, np.sin(x))

如果我删除逗号和变量“line”,变为“line”变量,则程序被破坏。上面给出的url的完整代码:

import numpy as np
import matplotlib.pyplot as plt
import matplotlib.animation as animation

fig = plt.figure()
ax = fig.add_subplot(111)

x = np.arange(0, 2*np.pi, 0.01)        # x-array
line, = ax.plot(x, np.sin(x))

def animate(i):
    line.set_ydata(np.sin(x+i/10.0))  # update the data
    return line,

#Init only required for blitting to give a clean slate.
def init():
    line.set_ydata(np.ma.array(x, mask=True))
    return line,

ani = animation.FuncAnimation(fig, animate, np.arange(1, 200), init_func=init,
    interval=25, blit=True)
plt.show()

根据http://docs.python.org/3/tutorial/datastructures.html#tuples-and-sequences逗号后变量似乎与仅包含一个项目的元组有关。

2 个答案:

答案 0 :(得分:48)

ax.plot()使用一个元素返回元组。通过将逗号添加到赋值目标列表,您可以要求Python解包返回值并将其分配给依次命名为左侧的每个变量。

通常,您会看到这适用于具有多个返回值的函数:

base, ext = os.path.splitext(filename)

但是,左侧可以包含任意数量的元素,并且只要是解包的元组或变量列表。

在Python中,它是使逗号为元组的逗号:

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

在大多数地方,括号是可选的。您可以使用括号重写原始代码而不更改含义:

(line,) = ax.plot(x, np.sin(x))

或者您也可以使用列表语法:

[line] = ax.plot(x, np.sin(x))

或者,你可以将它改写为使用元组解包的行:

line = ax.plot(x, np.sin(x))[0]

lines = ax.plot(x, np.sin(x))

def animate(i):
    lines[0].set_ydata(np.sin(x+i/10.0))  # update the data
    return lines

#Init only required for blitting to give a clean slate.
def init():
    lines[0].set_ydata(np.ma.array(x, mask=True))
    return lines

有关分配如何处理解包的完整详细信息,请参阅Assignment Statements文档。

答案 1 :(得分:18)

如果你有

x, = y

你解压缩长度为一的列表或元组。 e.g。

x, = [1]

将导致x == 1,而

x = [1]

给出x == [1]