모듈
- 모듈의 확장자 : .py - 같은 장소에 있는 모듈만 사용 가능 import 사용할_모듈 #theater_module.py def price(people): print("{0}명 가격은 {1}원 입니다.".format(people, people * 10000) def price_morning(people): print("{0}명 조조 할인 가격은 {1}원 입니다.".format(people, people * 7000) def price_soldier(people): print("{0}명 군인 할인 가격은 {1}원 입니다.".format(people, people * 5000) #case1 import theater_module theater_module.price(3) theater_module.pr..