Python
import turtle as t import random colorp = ['red','yellow','green','blue','purple','pink','black'] t.speed(0) x = random.randint(-360,360) y = random.randint(-180,180) a = 1 while True: c = random.randint(0,6) t.color(colorp[c]) t.goto(x,y) x = random.randint(-360,360) y = random.randint(-180,180) a += 1 t.pensize(a) print(a)