gggggg6.py
367 Bytes
import turtle
t=turtle.Pen()
turtle.screensize(800,600,"white")
t.pensize(4)
t.penup()
t.goto(-40,-40)
t.pendown()
t.circle(40)
t.penup()
t.goto(-40,40)
t.pendown()
t.circle(40)
t.penup()
t.goto(-40,40)
t.pendown()
t.forward(80)
t.penup()
t.goto(40,40)
t.pendown()
t.circle(40)
t.penup()
t.goto(40,-40)
t.pendown()
t.circle(40)
turtle.done()