from kandinsky import * from random import * while True: for c in range(40): for l in range(28): u = get_pixel(8*c,8*l)[0] & (255-2<<randint(0,8)) fill_rect(8*c,8*(l-1),8,8,(3*u,2*u,0))
Create, edit, and import your Python scripts
from kandinsky import * from random import * while True: for c in range(40): for l in range(28): u = get_pixel(8*c,8*l)[0] & (255-2<<randint(0,8)) fill_rect(8*c,8*(l-1),8,8,(3*u,2*u,0))