Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

Random Values

import random
random.seed(42)
random.random()
random.randrange(1, 7)
random.choice(values)
random.sample(values)