일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- 'module' object is not callable
- 무선마우스#무소음마우스#다이소마우스#LGC-CMU02
- 이용약관
- div
- javaw
- 파이참 단축키
- youtube우회
- 유튜브우회결제
- python
- RSI
- 회원이용약관
- HTML
- 유투브 우회
- Java
- jQuery
- 데이터
- 자바path
- 자바환경변수
Archives
- Today
- Total
Hy-yh
'module' object is not callable 파이썬 본문
'module' object is not callable
모듈 객체를 불러올 수 없다.
문제점
from tr2
class Main():
def __init__(self):
super().__init__()
tr2()
오류코드: 'module' object is not callable
개선 후
from tr2 import tr2
class Main():
def __init__(self):
super().__init__()
tr2()
if __name__ == "__main__":
Main()
tr2이라는 클래스를 부를 목적으로 무심코 from만햇더니 모듈을 불러와지게됨 -> import를 붙여주니 해결
참고: devday.tistory.com/entry/TypeError-module-object-is-not-callable
'Coding > Python' 카테고리의 다른 글
RSI 실제값으로 쓰이는 최근 가중치 계산 (0) | 2023.08.06 |
---|---|
파이참 단축키 (0) | 2020.12.14 |
파이썬 가상환경 만들기 (0) | 2020.12.14 |