第14675题 判断
Python执行给定字符串比较相关代码后,输出结果是否为True?
a, b = "12,2".split(",")
if a>b:
    print(True)
else:
    print(False)
A

正确

B

错误

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