Random 수를 컴퓨터로부터 받는 라이브러리
https://docs.python.org/3/library/
파이썬은 많은 무료 라이브러리가 있다는 장점이 있다. built-in 도 import 해야하는 라이브러리도 많다!
from random import randint #randim.randint(a,b) choice = randint(a,b) print(choice) # a부터 b 까지 중의 랜덤 수가 출력된다.