1. import sys sys - System specific parameters and functions this module privides access to some variable used or maintained by the interpreter to functions that interract strongly with the interpreter. It is always available. 영문 내용으로보면 그냥 무조건 써야할 것같은 생각이 듭니다. 다시 설명하자면, 파이썬 인터프리터 를 제어할 수 있는 방법을 제공 2. Import os OS를 제어할 수 있는 방법을 제공 import os os.getcwd() 3. Import re Regular expression 을 이용해 문자열을 다..