반응형
"TypeError: 'module' 개체를 호출할 수 없습니다." pprint를 사용하려고 합니다.
이 코드를 시험해봤는데dict
:
import pprint
pprint({})
그러면 다음 오류가 발생합니다.
Traceback (most recent call last):
File "temp.py", line 3, in <module>
pprint({})
TypeError: 'module' object is not callable
왜 호출할 수 없는 거죠?
다음을 사용하여 가져오기:
from pprint import pprint
그pprint()
함수는 에 있습니다.pprint
모듈.
언급URL : https://stackoverflow.com/questions/36399000/typeerror-module-object-is-not-callable-trying-to-use-pprint
반응형
'programing' 카테고리의 다른 글
함수의 PHP 코드입니다.공유 호스팅에 있는 모든 워드프레스 웹사이트의 php (0) | 2023.03.13 |
---|---|
$http 요청에서 응답이 올 때까지 angularjs로 어떻게 기다려야 합니까? (0) | 2023.03.13 |
Json은 그렇다.NET 캐시 유형의 시리얼화 정보 (0) | 2023.03.13 |
MongoDB - 여러 $or 연산 (0) | 2023.03.13 |
react.js의 인스턴스 v 상태 변수 (0) | 2023.03.13 |