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

下面哪个选项是正确的Python条件判断语句?

Aif a > b and b > c: print('a大')
Bif a > b or b > c: print('a大')
Cif a > b and or b > c: print('a大')
Dif a > b and b > c print('a大')