# 화면 그리기

### 코드

```
@화면 "링크" 그리기
```

{% code title="폭을 지정할 때" %}

```
@화면 "링크" 폭 {길이}로/으로 그리기
```

{% endcode %}

***

### 설명

* `@화면`은 실습 화면에 미디어나 링크를 표시하는 기능이에요.
* `@화면 "링크" 그리기`는 입력한 주소의 미디어를 화면에 보여줘요.

***

### 주의사항

* 링크는 반드시 따옴표로 감싸야 해요.
* http\:// 또는 <https://로> 시작하는 유효한 주소만 사용할 수 있어요.

***

### 파이썬 대응 코드

```
from IPython.display import Image, display
display(Image(url="링크"))
```

***

### 예시

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

```
@화면 "하랑이 사진이 있는 링크" 폭 300으로 그리기
```

{% endcode %}

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

```
(출력창에 폭이 300인 하랑이 사진이 나온다.)
```

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