top of page
Search

PYTHON CODING

  • Writer: waclaw_koscielniak
    waclaw_koscielniak
  • Sep 17
  • 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

Run this code and make your own art.
Run this code and make your own art.

 
 
 

1 Comment


Guest
Sep 17

Make your own art.

Like
bottom of page