sqwq.py
319 Bytes
import turtle
#pen=turtle.Pen()
turtle.fillcolor("red")
turtle.begin_fill()
turtle.forward(180)
turtle.left(90)
turtle.forward(180)
turtle.goto(0,0)
turtle.end_fill()
turtle.fillcolor("yellow")
turtle.begin_fill()
turtle.forward(180)
turtle.right(90)
turtle.forward(180)
turtle.end_fill()
turtle.done()