# 패키지, 모듈 위치 # 확인하는 법 import inspect import random from travel import * # print(inspect.getfile(random)) # 출력 : C:\Python38\lib\random.py # print(inspect.getfile(thailand)) # 출력 : c:\Users\kim56\OneDrive\바탕 화면\PythonWorkspace\travel\thailand.py # 문제가 없는 부분인데 pylint 오류 발생 시킴. 출력도 문제 없이 잘 되고 있음. # 다음 진행 순서 # 1. travel 패키지를 C:\Python38\lib\random.py 여기로 옮겨본다. # 2. 기존 travel 패키지의 이름은 travel_temp라고 변..