Here are some example problems to solve! They are listed roughly by how hard they will be to solve, top to bottom (easiest at the top).
This isn't a challenge, just something that is used in a number of the other challenges. How to create a random number:
# Allows us to use a function someone else wrote (called "randint")
from random import randint
# Selects a number anywhere between 6 and 12 (including 6 and 12)
my_var = randint(6, 12)