15
“如果a或b或c但不是全部”的Python语法
我有一个可以接收零个或三个命令行参数的python脚本。(要么以默认行为运行,要么需要指定所有三个值。) 诸如此类的理想语法是什么: 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