Explore the Power of p5py

Create stunning visualizations and interactive graphics with Python and p5py.

TRY THE P5PY IDE NOW

Start with Basic Shapes

With p5py, creating simple shapes like circles and squares is easy.

from p5py import *
run()

size(200, 100)
background(255)

fill(255, 0, 0)
ellipse(50, 50, 80, 80)
rect(100, 10, 80, 80)
Try this Example in the IDE