본문 바로가기

프로그래밍/Error

[Error] TypeError: 'str' object is not callable

https://olppaemmit.tistory.com/m/214

 

[Error] zsh: command not found: python (Mac OS)

python을 설치했는데 python --version으로 하면 python을 모른다고 하고 python3 --version으로 하면 버전을 알려준다. python으로 사용하고 싶어서 다음과 같은 방법을 사용했다. 1. 파이썬3 설치된 위치 확인

olppaemmit.tistory.com

 

TypeError: 'str' object is not callable

자료형인 str을 변수명으로 사용하고 그 변수를 사용하려고 했으므로 에러 발생.

str이라는 이름의 변수를 찾아 변수명을 바꿔주면 됨.