RosettaCodeData/Task/Extreme-floating-point-values/Python/extreme-floating-point-valu...

9 lines
191 B
Python

>>> # But note!
>>> 1 / -0.0
Traceback (most recent call last):
File "<pyshell#106>", line 1, in <module>
1 / -0.0
ZeroDivisionError: float division by zero
>>> # (Not minus infinity)