Converting Float data Type into Integer Data Type is very easy in Python,
there is Built-in Function available in Python to convert Float Data into Integer Data type int(someValue)
Here is the Code
_isFloat = 3.56
_isInteger = int(_isFloat)
print(type(_isInteger))
Tags:
Python