Last active
April 2, 2023 11:21
-
-
Save TIny-Hacker/1596fc30eb9800bf6d8b4b4f4de7832b to your computer and use it in GitHub Desktop.
Rectangles
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from kandinsky import * | |
from random import * | |
from time import * | |
while True: | |
fill_rect(randint(0, 275), randint(0, 200), randint(0, 50), randint(0, 50), (randint(0, 255), randint(0, 255), randint(0, 255))) | |
sleep(.2) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment