[Python] 타입 비교 / 형변환
2016. 9. 26. 15:13ㆍ프로그래밍/Python & dJango
1. 타입 확인 방법
print type(변수)
2. 인스턴스 비교 방법
print isinstance(test, 타입명)
ex)
print isinstance(test, dict)
3. 형변환방법
test = dict(test)
test = str(test)
test = int(test)
'프로그래밍 > Python & dJango' 카테고리의 다른 글
[Python] 축약 함수 lambda 사용법 (0) | 2016.09.28 |
---|---|
[django] django convert String to Datetime (0) | 2016.09.27 |
[Python] 삼항 연산자 (0) | 2016.09.26 |
[Python] python *args와 **kwargs 차이 (0) | 2016.09.25 |
Generic detail view ~~ must be called with either an object pk or a slug. 처리 방법 (0) | 2016.09.15 |