前几天我在使用计算器,在测试时,我记得我不能除以零,因此会出现错误。无论如何,当用户尝试将0除以0时,我可以显示一些文本吗?这是我的代码:
def SMD():#Simple Maths Divide
print("Division eh? Fair enough")
divideno1 = float(input("What's the first number?"))#Divide number 1
divideno2 = float(input("What's the second number?"))#Divide number 2
dividenof = divideno1/divideno2#Divide number final
print("Your answer is", dividenof)
我当时在考虑使用“ if”语句,但我不知道该怎么做,因为它不等于任何东西(错误)。