0
try:
def function_addition(x,y):
assert (y!=0)
total= x/y
return total
num1=float(input("Write a number :"))
num2=float (input("Write a second number:"))
result=function_addition(num1,num2)
assert (num2 !=0)
print (result)
: プリント(「!エラーあなたの入力を確認してください」)try/exceptとassertの違いは何ですか? AssertionErrorが除い
は、私は上記のコードを書いたが、私が行うとき、私は同じ結果を得た理由を私は知らない:except ZeroDivisionError: So can I delete assert and replace it by except ZeroDivisionError ?
`