반응형
TypeError: unsupported operand type(s) for +: 'int' and 'str'¶
In [1]:
# 타입이 다른 두 변수간 연산이 일어날때 발생한는 에러이며 예시는 아래와 같습니다.
1 + "name"
--------------------------------------------------------------------------- TypeError Traceback (most recent call last) /tmp/ipykernel_2336008/3257371006.py in <module> 1 # 타입이 다른 두 변수간 연산이 일어날때 발생한는 에러이며 예시는 아래와 같습니다. ----> 2 1 + "name" TypeError: unsupported operand type(s) for +: 'int' and 'str'
In [2]:
# 숫자 1을 문자 1로 수정하면 에러 없이 결과를 볼 수 있습니다.
str(1) + "name"
Out[2]:
'1name'
반응형
'python' 카테고리의 다른 글
OSError: [E050] Can't find model 'en_core_web_sm'. It doesn't seem to be a Python package or a valid path to a data directory (0) | 2023.09.19 |
---|---|
UnicodeDecodeError: 'utf-8' codec can't decode byte 0xc0 in position 0: invalid start byte (0) | 2023.09.18 |
AttributeError: 'str' object has no attribute 'capabilities' (0) | 2023.09.13 |
파이썬 튜플을 csv로 (tuple to csv) (0) | 2023.09.04 |
파이토치 정수 랜덤 생성 (0) | 2023.08.29 |
댓글