import turtle
import turtle as t
import random
import time
t.tracer(0)
t.hideturtle()
t.colormode(255)
w = 800
h = 600
t.setup(w,h)
x = 100
y = 250
d = 50
c = (222,33,11)
while True:
t.clear()
x += 1
y += 1
t.up()
t.goto(x,y)
t.down()
t.dot(d,c)
turtle.update()
time.sleep((0.05))