> For the complete documentation index, see [llms.txt](https://sdc-james.gitbook.io/onebook/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://sdc-james.gitbook.io/onebook/3./3.3./3.3.7..md).

# 4.3.7.     주석

파이썬 주석은 블록단위와 한 줄(행) 단위로 주석을 만들 수 있습니다.

행단위 주석은 해시 기호 (#)를 사용합니다.  # 다음에 오는 모든 문자들은 그 행의 끝까지 주석이며 파이썬 인터프리터는 주석을 무시합니다.

```
# First comment
print "Hello, Python!" # second comment
```

프로그램 명령문이나 표현식 뒤에 같은 행에도 주석을 입력할 수 있습니다.

```
name = "Madisetti" # This is again comment
```

블록 단위 주석은 삼중 따옴표(''')를 사용합니다. 다음 삼중 따옴표로 묶인 문자열은 파이썬 인터프리터에서 무시되며 여러 줄의 주석으로 사용할 수 있습니다.

```
'''
This is a multiline
comment.
'''
```


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## 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, and the optional `goal` query parameter:

```
GET https://sdc-james.gitbook.io/onebook/3./3.3./3.3.7..md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

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.
