在线名词解释大全
专业、全面、易懂的全领域名词百科
首页
>
Python程序设计
>
详细
34 WhichofthefollowingstatementsareTrue?()
题型:多选题
选项
A.
(x > 0 and x < 10) is same as (x > 0 and x < 10)
B.
(x > 0 or x < 10) is same as (0 < x < 10)
C.
(x > 0 or x < 10 and y < 0) is same as (x > 0 or (x < 10 and y < 0))
D.
(x > 0 or x < 10 and y < 0) is same as ((x > 0 or x < 10) and y < 0)
正确答案: