programing

"TypeError: 'module' 개체를 호출할 수 없습니다." pprint를 사용하려고 합니다.

lastmoon 2023. 3. 13. 20:45
반응형

"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

반응형