# 출력창 정리하기

### 코드

```
출력창 정리하기
```

***

### 설명

<mark style="color:purple;">`출력창 정리하기`</mark>는 출력된 내용이 보이는 출력창을 모두 지우는 함수예요.

***

### 주의사항

* 출력창에 나온 데이터가 모두 지워지니 조심해서 사용해야 해요.

***

### 파이썬 대응 코드

```
import os
os.system('clear')
```

***

### 예시

{% code title="예시 코드" %}

```
출력창 정리하기
```

{% endcode %}

{% code title="예시 코드의 출력" %}

```
```

{% endcode %}

***

### 검색 키워드

전체 지우기, 비우기


---

# 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://codebook.horang.it/readme/022.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.
