Matplotlib - Animations
What will be the result of running this animation update function?
def update(frame):
x = list(range(frame))
y = [2*i + 1 for i in x]
line.set_data(x, y)
return line,