[Solved] What does this do? – ArgName in (“-h”, “–help”) [in python] [closed]
[ad_1] Try testing these things in your console… They are pretty self-explanatory. # 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 … Read more