반응형
출처:http://stackoverflow.com/questions/14681096/typeerror-isinstance-arg-2-must-be-a-type-or-tuple-of-types
typeError: isinstance() arg 2 must be a type or tuple of types
>>> names=['jhon','jack']
>>> isinstance(names,list)
Traceback (most recent call last):
File "<pyshell#291>", line 1, in <module>
isinstance(names,list)
TypeError: isinstance() arg 2 must be a type or tuple of types
>>>
에러 해결 방법
isinstance(names, __builtins__.list)
list이름을 __builtins__.list로 바꿔준다
반응형
'IT기술 관련 > 파이썬_루비 등 언어' 카테고리의 다른 글
파이썬 requests 라이브러리를 활용한 웹 취약점 점검 (0) | 2017.02.02 |
---|---|
[PYTHON 3] Tutorials 24. 웹 크롤러(like Google) 만들기 1 - How to build a web crawler (1) | 2017.02.02 |
[파이썬] 특정 파일 서버 가동후 가져오기 (0) | 2016.09.20 |
[python]특정 파일 서버에서 실행시키고 결과 가져오기 (0) | 2016.09.20 |
파이썬 SCP 오픈 소스 (0) | 2016.09.20 |