[Python] 자료형(Data type) Start

BioinformaticsAndMe






Python data type (자료형)


: 자료형이란 프로그래밍에 사용되는 숫자, 문자열 등 자료 형태의 모든 것

: 파이썬은 정수/실수/문자/논리형 등의 기본 자료형 형태를 처리함

# 정수형(Integer type): 양 또는 음의 정수 1, 2, -8, -42

data_int = 150 #정수형 선언

# 실수형(Float type): 소수점이 포함된 실수 6.8, -13.5, 24e12

data_flo = 9.0 #실수형 선언

# 문자형(String type): 따옴표[ ' 또는 " ]에 들어간 문자형 'abc', "defg", 'ab12cd'

data_str = 'abcd' #문자형 선언

#논리형(Boolean type): 참 또는 거짓 True, False

data_boo = True #논리형 선언 (대소문자 구분해야함 → true는 error 발생)





Python type conversion (자료형 변환)


: 파이썬에서는 자료형의 타입을 매우 간단하게 변환할 수 있음

# int(): 정수형 변환

x = int(1) y = int(2.8)

z = int("3")

print(x) print(y) print(z)

1

2

3

# float(): 실수형 변환

x = float(1) y = float(2.8) z = float("3") w = float("4.2") print(x) print(y) print(z) print(w)

1.0 2.8 3.0 4.2

# str(): 문자형 변환

x = str("s1") y = str(2) z = str(3.0) print(x) print(y) print(z)

s1 2 3.0





#Reference

1) https://wikidocs.net/11

2) https://www.slideshare.net/TonyNguyen197/python-language-data-types-61715303

3) https://www.w3schools.com/python/python_casting.asp

4) http://www.techgeekbuzz.com/python-type-conversion-type-casting/





[Python] 자료형(Data type) End

BioinformaticsAndMe

'Python' 카테고리의 다른 글

[Python] 문자열(String)  (0) 2019.10.24
[Python] 연산자(Operator)  (0) 2019.10.18
[Python] 주석 처리  (0) 2019.10.15
Anaconda 설치  (0) 2019.10.08
Python JSON  (0) 2019.10.02

+ Recent posts