automne2021.py

Created by schraf

Created on November 08, 2021

284 Bytes


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)