How to convert float value into int value in python? All Questions › Category: Python › How to convert float value into int value in python? 0 Vote Up Vote Down chetan shidling asked 4 years ago I need short information. 1 Answers 0 Vote Up Vote Down chetan shidling answered 4 years ago Let’s see one example: >>>a = 4.5 >>>b = int(a) >>>type(b) <class ‘int’ > >>>b 4 chetan shidling replied 4 years ago This you can convert float value into int value.