# Chapter 13 example: random in its three forms. import random print(random.random()) # a float between 0.0 and 1.0 print(random.randint(1, 6)) # whole number from 1 to 6 print(random.randint(1, 100)) # whole number from 1 to 100 # Run the file a few times and watch the numbers change.