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

以下代码的执行结果是什么? x = 5 if x > 10: print('大') else: print('小')

A
B
C大和小
D没有输出