1. 자주 쓰이는 형변환 정리

형변환

입력

print(type(int(3.5)))
print(int(3.5))
print(type(float(3)))
print(float(3))
print(type(str(3))
print(str(3))

출력

<class 'int'>
3
<class 'float'>
3.0
<class 'str'>
3

기존의 자료형에서 다른 자료형으로 바꾸는 것을 형변환이라고 합니다.

입력

x = input('Insert the number.')
y = input('Insert the number.')
print(x + y)
print(type(x))
print(type(y))

출력

Insert the number.4
Insert the number.56
456
<class 'str'>
<class 'str'>

파이썬에서의 형변환은 아주많은 방법들이 있지만 내장함수를 이용해서 아주 쉽게 할 수 있습니다. 어떤식으로 쓰이는지 간단한 예시를 통해 같이 한번 살펴봅시다.

1.1 int로 형변환