Skip to content

Instantly share code, notes, and snippets.

@gambl
Created September 24, 2013 09:30
Show Gist options
  • Save gambl/6682447 to your computer and use it in GitHub Desktop.
Save gambl/6682447 to your computer and use it in GitHub Desktop.
Python : Boilerplate
#!/usr/bin/python
# import modules used here -- sys is a very standard one
import sys
# Gather our code in a main() function
def main():
print 'Hello World', sys.argv[1]
# Command line args are in sys.argv[1], sys.argv[2] ..
# sys.argv[0] is the script name itself and can be ignored
# Standard boilerplate to call the main() function to begin
# the program.
if __name__ == '__main__':
main()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment