Jump to content

User:Msiddalingaiah/Python snippets

From Wikipedia, the free encyclopedia
This is an old revision of this page, as edited by Msiddalingaiah (talk | contribs) at 15:25, 23 March 2005 (Initial page). The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.
(diff) ← Previous revision | Latest revision (diff) | Newer revision → (diff)

A short collection of Python code snippets

Main function

if __name__ == "__main__":
    main()

Command line arguments

import sys
for arg in sys.argv:
    print arg