7 lines
124 B
Python
7 lines
124 B
Python
# encoding: UTF-8
|
|
import matplotlib.pyplot as plt
|
|
|
|
plt.plot([10,20,30])
|
|
plt.xlabel('times')
|
|
plt.ylabel('numbers')
|
|
plt.show() |