turtle_prof_tuto005.py

Created by niz-moussatat

Created on June 28, 2022

311 Bytes


# Type your text here
from random import *
from turtle import *
pendown()
width(100)
circle(50)
penup()
for i in range(100) :
  x = randint(-100,100)
  y = randint(-50,50)
  goto(x,y) 
  width(10)
  color(randint(1,255),randint(1,255),randint(1,255))
  pendown()
  circle(5)
  penup()