반응형 python 모듈1 [Python] 모듈 가져오기(Import, from) 1. 모듈 가져오기(Import, from) 파이썬에서는 외부 모듈을 불러올 경우, Import 혹은 from을 사용합니다. 1) Import 모듈명 모듈 전체를 가져오는 방법입니다. 사용할 때는 {모듈명.변수} 형식으로 사용해야 합니다. (아래 예시) import logging ..... # logger carLogFormatter = logging.Formatter('%(asctime)s [%(levelname)s] %(message)s') carLogHandler = logging.handlers.TimedRotatingFileHandler(filename='/test.log', when='midnight', interval=1, encoding='utf-8') ..... 2) from 모듈 imp.. 2021. 11. 23. 이전 1 다음 반응형