第18996题 单选
在Python中,已知a=2,b="3.5",如何编写代码实现2+3.5的加法运算?
A
a+b
B
str(a)+b
C
a+ int(b)
D
a+eval(b)
提交0次 正确率0.00%
答案解析