모듈 importimport 모듈import 모듈 as 새이름from 모듈 import 함수from 모듈 import *import coincoin.get_open_price()import coin as newnamenewname.get_open_price()from coin import get_open_priceget_open_price()from coin import *get_close_price() dictionary 사용# dictionary = {# "a1" : "A1",# "b1" : "B1"# }dictionary = [ {"key" : "A1", "value" : 10}, {"key" : "B1", "value" : 20}]for d in dictionary: ..