python:什么是'变量,'?

时间:2015-08-29 12:21:38

标签: python variables matplotlib comma iterable

什么是"行,"意思是在python中做什么?我收集它与对象中的iterables有关。

import numpy as np
import matplotlib.pyplot as plt

ax = plt.subplot(111)
t = np.arange(0.0, 5.0, 0.01)
s = np.cos(2*np.pi*t)
line, = plt.plot(t, s, lw=2)

plt.annotate('local max', xy=(2, 1), xytext=(3, 1.5),
             arrowprops=dict(facecolor='black', shrink=0.05),
             )

plt.ylim(-2,2)
plt.show()

2 个答案:

答案 0 :(得分:2)

line, = plt.plot(t, s, lw=2)表示plt.plot返回一个元素的列表或元组,并且您正在提取该元素(已分配给line)。

答案 1 :(得分:2)

Python知道解压缩,将元组,列表或其他迭代保存到单独的变量中:

a, b = 3, 4

如果某个函数返回只包含一个元素的iterable,则只有一个变量要解压缩到:

line, = plt.plot(t, s, lw=2)