Run ❯
Get your
own Python
server
❯
Run Code
Ctrl+Alt+R
Change Orientation
Ctrl+Alt+O
Change Theme
Ctrl+Alt+D
Go to Spaces
Ctrl+Alt+P
# Import math Library import math # Check whether some values are infinite print (math.isinf (56)) print (math.isinf (-45.34)) print (math.isinf (+45.34)) print (math.isinf (math.inf)) print (math.isinf (float("nan"))) print (math.isinf (float("inf"))) print (math.isinf (float("-inf"))) print (math.isinf (-math.inf))
False
False
False
True
False
True
True
True