알아두자/python
모듈 불러올 시 차이점
Black_HellCat
2013. 11. 21. 23:30
from random import choice
from time import sleep
choice ~
sleep ~
이는 아래와 바꿔 쓸 수 있다.
import random
import time
random.choice ~
time.choice ~