파이썬/에러 디버깅

TypeError: can only concatenate str (not "int") to str

kimble2 2024. 8. 17. 11:10
반응형

 

잘못된 타입 간의 덧셈

문제 코드:

 

 

result = "The number is: " + 5
 

오류 메시지:

TypeError: can only concatenate str (not "int") to str
 

해결 방법: 정수를 문자열로 변환한 후 덧셈을 수행해야 합니다.

result = "The number is: " + str(5)
 

또는, 문자열 형식을 사용하여 변수를 삽입할 수 있습니다.

result = f"The number is: {5}"
 
 

 

 

#python #debug #typeerror #error

 

 

반응형