+ 연산자 (주의)
CODEDRAGON ㆍDevelopment/Python
반응형
+ 연산자 (주의)
· + 연산자는 숫자와 문자열에 대한 연산을 지원하지 않습니다
· 파이썬은 수치형 자료와 문자형 자료를 연결할 수 없습니다. (TypeError)
print(12 + 'twelve') |
print(12 + 'twelve') TypeError: unsupported operand type(s) for +: 'int' and 'str' |
'Development > Python' 카테고리의 다른 글
멤버쉽 연산자 - in, not in (0) | 2020.01.17 |
---|---|
Identity 연산자 (0) | 2020.01.17 |
연산자 우선순위 (Operators Precedence) (0) | 2020.01.17 |
파이 차트(pie chart) (0) | 2020.01.17 |
문자열 포멧팅 - 정렬 (0) | 2020.01.16 |