일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- Java
- 유튜브우회결제
- div
- 데이터
- javaw
- 자바환경변수
- RSI
- youtube우회
- jQuery
- 자바path
- 파이참 단축키
- python
- 이용약관
- HTML
- 유투브 우회
- 'module' object is not callable
- 무선마우스#무소음마우스#다이소마우스#LGC-CMU02
- 회원이용약관
Archives
- Today
- Total
목록'module' object is not callable (1)
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-no..
Coding/Python
2020. 12. 14. 05:07