#!/usr/bin/env python # system include files # import os import sys import getopt import numpy as np # main: this is the main function of this Python # def main(argv): print("hello world") # begin gracefully # if __name__ == "__main__": main(sys.argv) # # end of file