python
[python에러] TypeError: can only concatenate str (not "NoneType") to str ~
말랑Cow
2022. 12. 28. 16:02
반응형
print 함수는 str 타입에 대해서만 + 로 연결이 가능하다.
해결법
str타입 외 다른 타입들은 + 가 아닌 콤마(,) 로 연결해야 오류가 발생하지 않는다.
반응형