>>> from sklearn.datasets import make_blobs
>>> X, y = make_blobs(n_samples=10, centers=3, random_state=42, center_box=(20, 20), cluster_std=2)
>>> X
array([[22.93129754, 19.5484474 ],
[18.91123455, 20.22184518],
[17.97433776, 20.62849467],
[20.13505641, 17.15050363],
[20.48392454, 16.17343951],
[19.06105123, 21.08512009],
[23.15842563, 21.53486946],
[16.55016433, 18.87542494],
[18.18395185, 17.1753926 ],
[19.07316461, 19.06854049]])