# File: random-example-2.py

import random

# random choice from a list
for i in range(5):
    print random.choice([1, 2, 3, 5, 9])

## $ python random-example-2.py
## 2
## 3
## 1
## 9
## 1
