What is “argv”, and what does it do?

前端 未结 7 1690
耶瑟儿~
耶瑟儿~ 2020-11-30 04:36

argv

What on Earth is it!?

Edit: If you can, will you please write a line or two and explain how it works?

7条回答
  •  星月不相逢
    2020-11-30 04:57

    Try this simple program, name it as program.py

    import sys
    print sys.argv
    

    and try executing

    python program.py
    python program.py a b c
    python program.py hello world
    

    Note what is argv now.

提交回复
热议问题