题目计算输入的表达式值,表达式中含有特殊符号!@#,需要单独计算。我把两个数据分成整数和小数部分计算的,但最后只能通过50%,有大佬能帮我看看是为什么吗? # If you need to import additional packages or classes, please import here. def func(): l=int(input()) a,b=input().split('+') d={"!":0,"@":1,"#":2} v=[[0,13,4],[13,7,20],[4,20,5]] ans=0 if ('.'in ...