# 실수형(Float)

초등학교 때 분수를 배우면서 수학에서 멀어지는 사람들이 많습니다. 그나마 딱 떨어지는 유리수의 경우는 괜찮은 편이지만, 무리수로 가면 슬슬 머리가 아파오기 시작하죠. 어째든 보통 소숫점을 포함한 숫자를 우리는 실수라고 표현합니다.

```python
pi = 3.14159265359
r = 3
circumference = 2*pi*r
circle_span = pi*(r**2)
print('원주',circumference)
print('원의 넓이',circle_span)
```

위의 코드를 보고 어떤 것이 떠오르시는지요? 아마도 초등학교 고학년 때 배우게 되는 원주(원의 둘레)와 원의 넓이에 대한 수식임을 기억하실 겁니다. 위의 내용은 실수형 자료를 사용하는 방법에 대한 간단한 예입니다.&#x20;


---

# 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://study-code.gitbook.io/python-basic/untitled/float.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.
