모듈 불러올 시 차이점

알아두자/python 2013. 11. 21. 23:30

from random import choice

from time import sleep


choice ~

sleep ~


이는 아래와 바꿔 쓸 수 있다.


import random

import time


random.choice ~

time.choice ~