변수란?
- 변수는 데이터를 담는 그릇을 의미.
변수를 통해 데이터를 담아 다방면으로 쉽게 사용 가능.
ex)
>>> A = 100
>>> print(A)
100
- 변수를 이용한 계산
ex)
>>> A = 100
>>> B = 200
>>> print(A + B)
300
type 함수
- 데이터의 타입을 판별.
ex)
>>> A = 100
>>> B = " PYTHON"
>>> C = 11.11
>>> print(type(a),type(b),type(c))
(<type 'int'>, <type 'str'>, <type 'float'>)
데이터 타입 변경
ex)
>>> A = "2021"
>>> B = int(A)
>>> print(type(A))
>>> print(B-1,type(B))
<type 'str'>
(2020, <type 'int'>)
데이터 타입 확인 (boolean)
ex)
>>> A = 10
>>> type(A) == int
True
>>> B = 'hello'
>>> type(B) == str
True
>>> type(B) == int
False
'Coding > Python' 카테고리의 다른 글
[python] find, index 함수 ( 문자열에서 문자 찾기 ) (0) | 2021.11.10 |
---|---|
[python] 알파벳 대/소문자 변환 함수 (upper, lower...) (0) | 2021.11.09 |
[python] replace, strip, split 함수 (0) | 2021.11.08 |
[python] 리스트, 인덱싱, 슬라이싱 (0) | 2021.11.06 |
[python] 출력문 ( sep, end, escape ) (0) | 2021.11.03 |