How to draw a semicircle in Python turtle only

BobTheCat picture BobTheCat · Apr 4, 2015 · Viewed 60k times · Source

How to draw a semi circle(half circle) in python turtle only?

I can only use Python turtle. I have try looking for resouces but no luck on finding ones that only use Python turtle.

Answer

nare picture nare · Oct 28, 2015

See Python turtle reference on circle. For example, for a semi-circle with radius 100 it would be:

import turtle
turtle.circle(100,180)