type(s) (1) 썸네일형 리스트형 [ Python ] TypeError: unsupported operand type(s) for +: 'int' and 'str' ... Python errorTypeError: unsupported operand type(s) for +: 'int' and 'str' ... 시작 전 테스트환경 살피기 Time 2017년 08월 18일 OS Linux(Ubuntu 16.04 LTS) Language Python 2.7 일단 문제의 원인은 보통 문장을 연결해 줄 때 발생한다.문자열 + 정수형 문자를 연산하면 문자열로 만들어 줬던 다른 언어체계와 헷갈리기 시작하는게 주 원인같다. 예를 들어 아래와 같은 문장 사용시에 Python은 error를 뱉는다. >>> print "hi" + 2017 + "nice to meet you" + 1004Traceback (most recent call last): File "", line 1, in Type.. 이전 1 다음