programming-examples/python/Algorithms/plot.py

7 lines
106 B
Python
Raw Normal View History

2019-11-15 12:59:38 +01:00
from cmath import sin
import matplotlib.pyplot as plt
plt.plot([sin(x) for x in range(100)])
plt.show()