6 lines
81 B
Python
6 lines
81 B
Python
|
from matplotlib import pyplot as plt
|
||
|
|
||
|
plt.figure()
|
||
|
plt.plot(range(4))
|
||
|
plt.show()
|