명시적 데이터 타입 변환(casting) : int(), float(), str()# 문자열과 숫자는 산술 연산을 할 수 없음# 숫자 타입으로 변환 후 산술 연산을 실행# 문자열은 더하기 연산만 가능, 문자열 + 문자열 : concatenate 문자열 이어 붙이기 # print("3.1"+ 1.2) # 실행 불가능 print(float("3.1")+1.2) # 실행 가능 print("3.1"+str(2.2)) # 실행 가능 실행결과## Error4.33.12.2 # 간단한 계산기 x = input('>>> 숫자(x) 입력:') y = input('>>> 숫자(y) 입력:') print(x+y) 실행결과>>> 숫자(x) 입력:5>>> 숫자(y) 입력:656 x = float(input('>>> 숫자(x) ..
데이터 타입
파이썬 데이터 타입 : 숫자 타입 : int(정수), float(실수), complex(복소수) 논리 타입 : bool(True, False) 문자열 : str 시퀀스(Sequence): list, tuple 매핑(mapping): dict 집합: set None : 값이 없음을 나타내는 데이터 타입 int 타입 intVal = 123 print(type(intVal)) 실행결과 주소값 출력 print(id(intVal)) 실행결과140726390915152 float 타입 floatVal = 3.141592 print(type(floatVal)) 실행 결과 complexVal 타입 complexVal = 1 + 2j print(type(complexVal)) print(1j**2) 실행 결과 compl..