15
「aまたはbまたはcのすべてではない場合」のPython構文
ゼロまたは3つのコマンドライン引数を受け取ることができるpythonスクリプトがあります。(デフォルトの動作で実行するか、3つの値すべてを指定する必要があります。) 次のようなものの理想的な構文は何ですか? if a and (not b or not c) or b and (not a or not c) or c and (not b or not a): ?
130
python
if-statement