# make all of the functions in the "random" module available to this program import random # pick a random integer between 1 and 10 - this will be the user's lucky number! # random.randint() takes 2 arguments - a low number and a high number # it will return an integer within this range (with both the upper bound and # lower bound included) lucky = random.randint(1, 10) # output - note that this will change every time you run the program! print ("Today's lucky number is:", lucky)