第15277题
判断Python执行a,b = input().split(",");print(a + b)输入10,20后是否输出30
a,b = input().split(",")
print(a + b)
A

正确

B

错误

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