# 13.วาดรูปเลขห้าอารบิก

```python
// Some code
from turtle import *    #นำเข้าโมดูล turtle ทั้งหมด เพื่อใช้ในการวาดกราฟิก
pensize(3)              #กำหนดความหนาของปากกาเป็น 3 หน่วย
color('blue')           #กำหนดสีของปากกาและสีสำหรับการวาดเส้นเป็นสีน้ำเงิน
bk(200)                 #วาดเส้นตรงถอยหลังไป 200 หน่วย
rt(90)                  #หมุนหัวปากกาทางขวา 90 องศา
fd(100)                 #วาดเส้นตรงไปข้างหน้า 100 หน่วย
lt(150)                 #หมุนหัวปากกาทางซ้าย 150 องศา
circle(-112,285)        #วาดส่วนหนึ่งของวงกลมโดยใช้รัศมี -112 หน่วย (วาดทวนเข็มนาฬิกา) และหมุน 285 องศา
mainloop()              #รักษาหน้าจอการวาดกราฟิกให้ค้างอยู่เพื่อให้เห็นผลลัพธ์
```

<figure><img src="/files/joJB12ptlooqLSqkN7vd" alt=""><figcaption></figcaption></figure>


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://krootee.gitbook.io/python-turtle/2.example11-20/13..md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
