# Comments

Use comments to convey some message or otherwise prevent code from being executed by the interpreter. Comment by using the `#` sign followed by the commented message:

```python
# This is a single-line comment. It won't be executed.
```

Unlike other languages, Python doesn't offer multi-line comments, so the best you can do is put a comment on every line:

```python
#
# This is a multi-line comment.
# It won't be executed.
#
```


---

# 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://prof-rossetti.gitbook.io/intro-to-python/notes/python/comments.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.
