# 기다리기

### 코드

```
{숫자}초 기다리기
```

***

### 설명

<mark style="color:purple;">`기다리기`</mark>는 원하는 만큼 기다리는 코드예요.

정수형은 물론, 실수형도 가능해요.

***

### 주의사항

* 컴퓨터는 1ms 이하로 멈출 수 없어서, 실제로는 0.001초(1ms)까지만 작동 가능해요.

***

### 파이썬 대응 코드

```
import time
time.sleep(1)
```

***

### 예시

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

```
"안녕 반가워" 보여주기
1초 기다리기
"나는 하랑이야" 보여주기
```

{% endcode %}

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

```
안녕 반가워
{1초 후}
나는 하랑이야
```

{% 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/024.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.
