This post was flagged by the community and is temporarily hidden.
To pass parameters to a script, Python uses sys.argv. They are accessed as sys.argv[1], etc. Passing parameters to a method (function in Python) is the same as in Ruby.
This describes some of the nuances of Python parameters.