2016-07-27 35 views
-1

我用Python寫一個腳本時使用的命令,我需要做這樣的事情:Python的行書

python myscript.py command1 --commandarg1 --commandarg2

python myscript.py --scriptargument1 --scriptargument2 command2 --commandarg1 --commandarg2 --commandarg3

這可能使用​​?

+0

https://docs.python.org/2/howto/argparse.html – Alexander

+3

[死簡單argparse的可能的複製例如想要:1參數,3結果](http://stackoverflow.com/questions/7427101/dead-simple-argparse-example-wanted-1-argument-3-results) – idjaw

+0

「這可能使用'argparse'? 」。 [是](https://docs.python.org/2/library/argparse.html#sub-commands)。 Argparse調用這些'subcommands'(它被「subparsers」解析) – mgilson

回答