Source code for AutomateTheBoringStuffWithPython.Ch02.P07_fiveTimes
"""Five times
This program runs five times.
"""
# If P07_fiveTimes.py is run (instead of imported as a module), call
# the main() function:
if __name__ == '__main__':
main()