- Python - 프로그래밍 시작하기
- Python 기초 (Basics)
- Python 변수 (Variables)
- Python 연산자 (Operators)
- Python 리스트 (List)
- Python 튜플 (Tuple)
- Python 문자열 (Strings)
- Python 집합 (Sets)
- Python 딕셔너리 (Dictionary)
- Python 흐름 제어 (Flow control)
- Python 함수 (Function)
- Python 클래스 (Class)
- Python 내장 함수 (Built-in function)
- Python 키워드 (Keyword)
- Keyword - and
- Keyword - as
- Keyword - assert
- Keyword - break
- Keyword - class
- Keyword - continue
- Keyword - def
- Keyword - del
- Keyword - elif
- Keyword - else
- Keyword - except
- Keyword - False
- Keyword - for
- Keyword - from
- Keyword - global
- Keyword - if
- Keyword - import
- Keyword - in
- Keyword - is
- Keyword - lambda
- Keyword - None
- Keyword - not
- Keyword - or
- Keyword - pass
- Keyword - return
- Keyword - True
- Keyword - try
- Keyword - while
- Python 파일 다루기
- Python datetime 모듈
- Python time 모듈
- Python collections.deque
- Python collections.namedtuple
- Python의 선 (Zen of Python)
- Python Tutorial
- NumPy Tutorial
- Matplotlib Tutorial
- PyQt5 Tutorial
- BeautifulSoup Tutorial
- xlrd/xlwt Tutorial
- Pillow Tutorial
- Googletrans Tutorial
- PyWin32 Tutorial
- PyAutoGUI Tutorial
- Pyperclip Tutorial
- TensorFlow Tutorial
- Tips and Examples
int()¶
int() 함수는 주어진 값을 정수로 변환해서 반환합니다.
예제¶
a = int(2.4) # Good
print(a)
b = int(-1.5) # Good
print(b)
c = int(4/3) # Good
print(c)
d = int('11') # Good
print(d)
e = int('5.5') # Error
print(e)
2
-1
1
11
---------------------------------------------------------------------------
ValueError Traceback (most recent call last)
<ipython-input-18-fa4d3f20db9b> in <module>()
11 print(d)
12
---> 13 e = int('5.5')
14 print(e)
15
ValueError: invalid literal for int() with base 10: '5.5'
int()는 양수, 음수, 분수 그리고 정수의 문자열을 모두 정수로 변환합니다.
하지만 정수가 아닌 문자열을 정수로 변환하려고 하면 에러를 발생합니다.
이전글/다음글
이전글 : input()
다음글 : isinstance()