# 词性

**词性**是指单词所属的类别，同一类别的单词具有相似的语法属性。在英语中，一般分为如下 11 种词性 [\[Wikipedia\]](https://en.wikipedia.org/wiki/Part_of_speech)：

| #   | 词性    | 标注                      | 例子    |
| --- | ----- | ----------------------- | ----- |
| 1.  | 名词    | `n.` noun               | apple |
| 2.  | 动词    | `v.` verb               | run   |
| 2.a | 助动词   | `aux.` auxiliary verb   | must  |
| 2.b | 不及物动词 | `vi.` intransitive verb | die   |
| 2.c | 及物动词  | `vt.` transitive verb   | love  |
| 3.  | 形容词   | `adj.` adjective        | good  |
| 4.  | 副词    | `adv.` adverb           | badly |
| 5.  | 代词    | `pron.` pronoun         | he    |
| 6.  | 介词    | `prep.` preposition     | to    |
| 7.  | 连词    | `conj.` conjunction     | and   |
| 8.  | 感叹词   | `int.` interjection     | oh    |
| 9.  | 数词    | `num.` numeral          | one   |
| 10. | 冠词    | `art.` article          | the   |
| 11. | 限定词   | `det.` determiner       | each  |


---

# 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://2ndla.highlight.ink/vocabulary/parts-of-speech.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.
