Tkinter "argv"?

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • nicstel
    New Member
    • Jun 2008
    • 20

    Tkinter "argv"?

    I don't understand the "argv" in TKinter module
    Can you tell me what argv means and do?

    Thank You
  • boxfish
    Recognized Expert Contributor
    • Mar 2008
    • 469

    #2
    Hi,
    Just looked it up in Python Essential Reference, argv is part of the sys module:
    Originally posted by Python Essential Reference
    The sys module contains variables and functions that pertain to the operation of the interpreter and its enviroment.
    Python Essential Reference says:
    Originally posted by Python Essential Reference
    argv: List of command-line options passed to a program. argv[0] is the name of the program.
    Anyone who programs in Python should have a copy of Python Essential Reference.

    Hope this helps.

    Comment

    Working...