오늘 제가 설명하고 싶은 이상한 것을 발견했습니다. 나는 이것을 질문으로 표현하는 방법을 100 % 확신하지 못했기 때문에 Google은 의문의 여지가 없습니다. 로깅 모듈은 이상한 이유로 모듈 logging.handlers에 액세스 할 수 없습니다. 나를 믿지 않는다면 직접 시도해보십시오.
>>> import logging
>>> logging.handlers
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
AttributeError: 'module' object has no attribute 'handlers'
>>> import logging.handlers
>>> logging.handlers
<module 'logging.handlers' from '/usr/lib/python2.6/logging/handlers.pyc'>
왜 이런 일이 일어나는지 설명 할 수 있습니까?
from module import *
. 거의 항상 실수입니다.