from random import * from kandinsky import * def mat(n): seed(n) for l in range(24): for c in range(32): draw_string(chr(48+randint(0,9)), 10*c, 12*l) for l in range(240): for c in range(320): v = get_pixel(c, l) coul = 0 if v!=(248,252,248): coul = choice([(0,0,0), (16,88,38), (104,253,151)]) set_pixel(c, l, coul) while True: c = randint(0,320) for l in range(240): set_pixel(c, 240-l, get_pixel(c, 200-l))