> For the complete documentation index, see [llms.txt](https://krootee.gitbook.io/python-turtle/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://krootee.gitbook.io/python-turtle/1.example01-10/01..md).

# 01.วาดรูปวงกลม

{% code title="" overflow="wrap" lineNumbers="true" fullWidth="true" %}

```python
import turtle  # นำเข้าโมดูล turtle
t = turtle.Turtle()  # สร้างออบเจ็กต์ Turtle ใหม่
t.circle(50)  # วาดวงกลมที่มีรัศมี 50 หน่วย
turtle.done()  # ปิดหน้าต่าง turtle graphics
```

{% endcode %}

<figure><img src="/files/42kIdTFanfbmU5Gl0Aek" alt=""><figcaption></figcaption></figure>
