#input 字符串 “5+9” value = "5+9" v1,v2 = value.split("+")#意思是把加号前后的5和9分别赋值给v1,v2 v1 = int(v1) #字符转换数字 v2 = int(v2) print(v1+v2) 输出9