第25582题
判断以下Python代码执行后是否会输出True
x, y, z = 5, 10, 15
result = x < y < z
print(result)
A

正确

B

错误

提交0次 正确率0.00%
答案解析