Skip to content

Latest commit

 

History

History
40 lines (36 loc) · 1.51 KB

File metadata and controls

40 lines (36 loc) · 1.51 KB

Digital Art

import turtle, random 
s=turtle.getscreen() 
f=turtle.Turtle() 
while True: 
    f.pendown() 
    for l in range (7): 
        f.circle((l+1)*7) 
        f.penup() 
        r=random.randint(0,256) 
        f.left(7) 
        f.color((r,128,128)) 
        f.pendown()