python - 타입 비교, 이런방식도 있었어?
Built-in function인 type, isinstance 함수를 사용하여 오브젝트 타입을 비교하고 마지막에는 Built-in library인 types를 사용하여 타입 비교하는 방법을 살펴본다. 변수 타입 확인 _string = 's' _int = 10 _float = 25.6 _list = [_string, _int, _float] print('_string type: {}, _int type: {}, _float type {}, _list type {}' .format(type(_string), type(_int), type(_float), type(_list))) OUTPUT _string type: , _int type: , _float type , _list type type() 은 Py..
2020. 3. 24.