Source code for AutomateTheBoringStuff.Ch02.P10_printRandom
"""Print random
This program prints five random numbers using the :py:mod:`random` module.
"""
# If P10_printRandom.py is run (instead of imported as a module), call
# the main() function:
if __name__ == '__main__':
main()