Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
734 views
in Technique[技术] by (71.8m points)

python - Turtle will not draw angled lines

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

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

I had the same problem on openSUSE Leap 43.3 and solved it by installing the correct graphics driver (in my case, xf86-video-intel on a Thinkpad T510).


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...