python float to int code example

Example 1: convert float to integer pandas

>>> df['C'] = df['C'].apply(np.int64)
>>> print(df)
...    A  B  C         D
... 0  8  0  1  6.226750
... 1  1  9  9  8.522808
... 2  1  4  2  7.739108

Example 2: convert float to int python

# convert float to int 
x=3.1415
y=int(x)
print(y) #outputs 3

Example 3: decimal to int python

print "%.4f" % 3.3333333333
3.3333
print "%.4f" % 6.6666666666
6.6667

Example 4: python float to int

int(your_number)

Example 5: int to float python

a = 5
a = float(a) # int to float

Example 6: float to int in python

# convert float to int 

int(2.0) #output :2

Tags:

Php Example