from turtle import * from random import randint,choice hideturtle() while True: penup() goto(randint(-160,160),randint(-110,110)) pendown() color(choice([(160,40,50),(220,120,60),(105,45,40)])) t = randint(5,20) circle(t,70) left(110) circle(t,70)
Create, edit, and import your Python scripts
from turtle import * from random import randint,choice hideturtle() while True: penup() goto(randint(-160,160),randint(-110,110)) pendown() color(choice([(160,40,50),(220,120,60),(105,45,40)])) t = randint(5,20) circle(t,70) left(110) circle(t,70)