# 출력 - 보여주기

### 코드

```
{출력할 데이터} 보여주기
```

***

### 설명

<mark style="color:purple;">`보여주기`</mark>는 기본 출력 함수로, 원하는 데이터를 화면에 보여줄 수 있어요.

프로그램 상에서 숫자, 문자열, 연산 결과 등 원하는 종류의 데이터를 코드를 통해 출력할 수 있어요.

***

### 주의사항

* <mark style="color:purple;">`보여주기`</mark> 앞에 출력할 데이터를 작성해야 해요.
* 출력할 데이터와 <mark style="color:purple;">`보여주기`</mark> 사이에는 띄어쓰기가 있어야 해요.
* <mark style="color:purple;">`보여주기`</mark>가 잘 작동하지 않는다면, 아래 코드와 같이 출력할 데이터에 괄호를 씌워주세요.

```
(1 + 1) 보여주기
```

***

### 파이썬 대응 코드

```
print()
```

***

### 예시

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

```
"안녕 친구들" 보여주기
1234 보여주기
1 + 1 보여주기

변수이름 = "변수데이터"  # [변수를 선언하는 것으로, 출력과 무관합니다]

변수이름 보여주기
```

{% endcode %}

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

```
안녕 친구들
1234
2
변수데이터
```

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