Circle cursor picture error I am having problems drawing angle lines with turtle. I can make squares, but star shapes do not show up. Also, the triangular cursor only shows one line, a circle cursor shows 4 horizontal lines. If I switch to "turtle" shape - it just shows 5 dots. See attached pic.
here's a simple star prog
import turtle
star = turtle.Turtle()
for i in range(50):
star.forward(50)
star.right(144)
turtle.done()
Thanks for any help.
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…