📜  python 3 of 4 条件为真 - Python 代码示例

📅  最后修改于: 2022-03-11 14:45:32.915000             🧑  作者: Mango

代码示例1
values = [a>2, b>3, c>2, d>6, e>4]
if sum(values) >= 3:
    list.append(True)