#!/bin/python3
#
# title:   template.py
# summary: Enter summary here
# author:  Your Name (your@email.address)
# date:    Month Day, Year (last update)
#
# description:
#
# Enter any additional description for your program here. This is a general
# purpose template for any python program you may need to write.

import sys

def main(argv):
    print('Arguments are: %s' % str(argv))

if __name__ == '__main__':
    # Skip passing the zeroth argument, as it is simply the filename
    # of the python program. To enter command line arguments in IDLE,
    # use shift-F5 instead of F5.
    
    main(sys.argv[1:])
