une petite animation matrix (oui je sais j’ai écris matryx)
from kandinsky import * from random import * from time import * fill_rect(0,0,1000,1000,(0,0,0)) a=5 c=( ("0"), ("1"), ("0"), ("0"), ("1"), ("0"), ("0"), ("1"), ("1"), ("1"), ("c"), ("2"), ("3"), ("4"), ("5"), ("6"), ("7"), ("8"), ("9"), ("."), ("x"), ("<"), ("#"), ("{"), ("y"), ("}"), ("*"), ("e"), ("%"), (">"), ("/"), ("+"), ("-"), ("h"), ) while a==5 : b=randint(0,33) o=c[b] x=randint(0,32)*10 y=randint(0,15)*15 draw_string(str(o),x,y,(30,220,90),(0,0,0)) sleep(0.0009)