Upload code

This commit is contained in:
2025-01-20 19:40:14 +01:00
parent 71625e3e41
commit 07809d7d77
66 changed files with 8917 additions and 0 deletions

25
RandomTurtle/Dots.py Executable file
View File

@@ -0,0 +1,25 @@
from turtle import*
import time
def scene(d):
dot(500/d)
ht()
color("red")
bgcolor("black")
pu()
tracer(0)
lt(90)
bk(120)
a = 200
for i in range(200):
clear()
scene(a)
update()
a -= 1
time.sleep(0.025)
fd(1)