Back in my fifth project on Alarm Clock (no GUI) I mentioned that I discovered a new way to learn programming languages: Through the learning of libraries. Through applying for IT internships and some ...
import matplotlib.pyplot as plt import numpy as np N = 3000000 x = np.random.random(N) y = np.random.random(N) c = np.random.random((N, 3)) # RGB plt.scatter(x, y, 1, c, '.') plt.show() The initial ...