目录
随机抽取list成员
import random # random choice from a list for i in range(5): print random.choice([1, 2, 3, 5, 9])