Python中不能用于实现判断语句的关键字是()。
A. if
B. else
C. elif
D. in
Python中用于实现循环的关键字是()。
A. while
B. if
C. float
D. with
不能够判断n是偶数的语句是()。
A. n%2==0
B. n%2!==1
C. not(n%2)
D. n%2
能够判断a是3的倍数或是7的倍数的是()。
A. a%3==0 and a%7==0
B. a%3==0 or a%7==0
C. a%3//0 and a%7//0
D. a%3//0 or a%7//0