RosettaCodeData/Task/Extreme-floating-point-values/Python/extreme-floating-point-values-2.py
Ingy döt Net 764da6cbbb CDE
2013-04-10 16:57:12 -07:00

8 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)