cent2024.py

Created by schraf

Created on July 07, 2024

215 Bytes


from kandinsky import *
from random import *
w,h,t,m,i=16,11,20,"359vwx$;*",0
while True:
 i=0 
 while i<w*h:
  col=42+(chr(i) not in m)*8*randint(18,24)
  fill_rect(i%w*t,i//w*t,t,t,(col,)*3)
  i+=1