0
Why is python so hard?
is it because i think to much into it or is it just to hard likprint((17 + 94) / (-5 +_______)) how do u do the ZeroDivisionError?
3 Réponses
+ 1
Whenever you divide a number by 0, python spits this ZeroDivisionError.
print((17+94)/(-5+5)) = print(111/0) = ZeroDivisionError.
Your print statement is fine for every number except 5 in this case (-5 + 5 = 0)
+ 2
Right side of the division must be zero no matter the left side number is the result will be error zerodivisionerror .
0
i still dont get it