计算器 随机红包
摘要:
def atom_cal(exp): if "*"in exp: a, b = exp.split("*") return str(float(a)*float(b)) elif "/" in exp: a, b = exp.split("/") return str(float(a)/float(b)) def m... 阅读全文
posted @ 2018-08-22 21:19 yw1229 阅读(181) 评论(0) 推荐(0) 编辑