- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
Physics
Chemistry
Biology
Mathematics
English
Economics
Psychology
Social Studies
Fashion Studies
Legal Studies
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
How to convert float to integer in Python?
Python has a built-in function int() that helps to convert float object to integer.
>>> a=10.56 >>> int(a) 10
- Related Articles
- Convert string to integer/ float in Arduino
- How to convert Integer array list to float array in Java?
- Convert tuple to float value in Python
- How to convert Float array list to float array in Java?
- Convert Tuple to integer in Python
- How to convert an integer to a character in Python?
- Python program to convert float decimal to octal number
- How to convert an integer to a unicode character in Python?
- How to convert an integer to an ASCII value in Python?
- How to convert an integer to a hexadecimal string in Python?
- How to convert an integer to a octal string in Python?
- Program to convert roman numeral to integer in Python?
- Program to convert integer to roman numeral in Python
- How to convert a single character to its integer value in Python?
- How to convert Integer array list to integer array in Java?

Advertisements