首页题库练习题目详情
Python程序设计单选题中等

在Python中,表达式 not (a > b or c < d) 的等价形式是?

Aa <= b and c >= d
Ba < b or c > d
Ca < b and c > d
Da >= b or c <= d