a除于b

a=eval(input())
b=eval(input())
if b!=0:
    print("{}".format(round(a/b,2)))
else:
    print("除零错误")
原文地址:https://www.cnblogs.com/670ling/p/12589864.html