
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Check If Float Value Is a Whole Number in Python
To check if a float value is a whole number, use the float.is_integer() method. For example,
print((10.0).is_integer()) print((15.23).is_integer())
This will give the output
True False
Advertisements