Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Python の 1 つのオプションに対して 1 つの引数を除くすべてを定義できますか?
ラボ内の 1 つのホストを除くすべてのホストをシャットダウンしたいと考えています。 を除くホスト リストからすべてのホストを選択する必要があるとargparser指定したためです。-h ^server1server1
argparser
-h ^server1
server1
シンプルなもの。で始まるホストをリストから削除します^。改訂されたリスト内の各ホスト名に対して、ある種のシャットダウン関数を呼び出します。
^
hostlist = [x for x in hostlist if not x.startswith('^')] map(shutdownhost, hostlist)