Python Forum
How Can I Draw Circle With Turtle İn Python ? - Printable Version

+- Python Forum (https://python-forum.io)
+-- Forum: Python Coding (https://python-forum.io/forum-7.html)
+--- Forum: Homework (https://python-forum.io/forum-9.html)
+--- Thread: How Can I Draw Circle With Turtle İn Python ? (/thread-33861.html)



How Can I Draw Circle With Turtle İn Python ? - mdm - Jun-02-2021

Hello friends ı need a help about this homework ı need to draw a circle but with dashed circle .

[Image: Screen-Shot-2019-03-21-at-8.57.28-PM.png...C783&ssl=1]

Can Anyone Helpme Thank You.


RE: How Can I Draw Circle With Turtle İn Python ? - BashBedlam - Jun-02-2021

I assume that you have already learned turtle.penup () and turtle.pendown (). Have you been taught about turtle.circle () and that turtle.circle (radius, arc_angle) will draw an arc instead of a full circle?


RE: How Can I Draw Circle With Turtle İn Python ? - DPaul - Jun-03-2021

If you are not familiar with penup/pendown, you can still use the arc technique
as BashBedlam proposes, but alternate colors.

Paul