x, =… - Ist dieses Komma der Kommaoperator?

Ich verstehe nicht, was Komma nach Variable bedeutetLinien, meint:http://matplotlib.org/examples/animation/simple_anim.html

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

Wenn ich das Komma und die Variable "line" entferne, wird die Variable "line", und das Programm bricht ab. Vollständiger Code aus der oben angegebenen 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()

Gemäßhttp://docs.python.org/3/tutorial/datastructures.html#tuples-and-sequences Komma nach Variable scheint sich auf Tupel zu beziehen, die nur ein Element enthalten.

Antworten auf die Frage(2)

Ihre Antwort auf die Frage