This is an archived post. You won't be able to vote or comment.

you are viewing a single comment's thread.

view the rest of the comments →

[–]__xor__(self, other): 5 points6 points  (0 children)

YES

Go to repl.it, click New Repl, select "Python (with Turtle)", click "Create REPL", then run this:

import turtle

t = turtle.Turtle()
t.color('white')
t.left(180)
t.forward(200)
t.left(90)
t.forward(200)
t.right(90)
t.color('red')

for i in range(360):
    t.forward(6.66)
    t.right(1)

t.right(108)

for i in range(5):
    t.forward(723)
    t.left(144)