PYTHON CODING
- waclaw_koscielniak

- Sep 17, 2025
- 1 min read
import numpy as np
import matplotlib.pyplot as plt
number = 500
x = np.random.rand(number)*10
y = np.random.rand(number)*10
sizes = np.random.rand(number)*10000
colors = np.random.rand(number)
plt.scatter(x, y, s=sizes, c=colors, cmap='twilight', alpha=0.8)
plt.show()
#Python #PythonCoding #VSC


Make your own art.