[ create a new paste ] login | about

Link: http://codepad.org/4bxIvK68    [ raw code | output | fork ]

slevy1ster - Python, pasted on Dec 14:
1
2
3
4
5
6
7
8
9
10
11
12
13
#Python

from math import pow

print 5.5 % 3.3

# Output:
# 2.2

print float("inf") % pow(2.,64.)

# Output:
#  nan


Output:
1
2
2.2
nan


Create a new paste based on this one


Comments: