JooRang

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

주랭몬 | 2022. 2. 16. 15:57

반응형

int형의 변수를 str 형태로 print 등등 시도 시 뜨는 에러로

출력을 하고싶으면 str(변수명)을 해주면 된다. 

ex) count = '4'

print(count) : Error 발생

print(str(count)) : 4 출력

 

반응형

'Back-End > Python' 카테고리의 다른 글

Jupyter Notebook .exe 실행파일 생성  (0) 2021.12.23
Back-End/Python
Comments