random.shuffle https://docs.python.org/2/library/random.html code example
Example 1: python randint
from random import randint
# generate an integer between 3 and 9 (inclusive range).
# (see randrange for exclusive range)
print(randint(3, 9))
Example 2: python random
import random
print(random.randint(0,1))