-10

誰かがこれが何を意味するのか説明できますか? 通りから離れたランダムな人が理解できる簡単な用語を使用してください. ありがとう

4

1 に答える 1

4

コンソールでこれらのことをテストしてみてください...それらはかなり自明です。

# set a value for ArgName 
>>> ArgName = "-h"
# see if that value is in this tuple
>>> ArgName in ("-h","--help")
True # because ArgName = '-h' which is in the tuple
>>> ArgName = "--help"
>>> ArgName in ("-h","--help")
True # because ArgName = '--help' which is in the tuple
>>> ArgName = "something"
>>> ArgName in ("-h","--help")
False # because ArgName = 'something' which is NOT in the tuple
于 2013-07-11T19:39:55.407 に答える