RosettaCodeData/Task/Extreme-floating-point-values/Python/extreme-floating-point-values-2.py

9 lines
191 B
Python
Raw Permalink Normal View History

2013-04-10 16:57:12 -07:00
>>> # 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)