摘要: import res = '2-1*-22-3-4/-5'def result_small( s ): # 计算乘除 if '*' in s: a, b = s.split('*') return float(a)*float(b) elif '/' in s: a, b = s.split('/' 阅读全文
posted @ 2020-02-08 09:36 冰灬荷 阅读(155) 评论(0) 推荐(0) 编辑