- 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
What is the maximum value of float in Python?
In sys module, a struct sequence (tuple of named elements) called float_info has been defined. In this structure, an element max returns maximum representable finite float number.
>>> import sys >>> sys.float_info.max 1.7976931348623157e+308
- Related Articles
- What is the maximum possible value of an integer in Python?
- Convert tuple to float value in Python
- What is the Maximum Value of smallint(6) unsigned in MySQL?
- What is the maximum possible value of an integer in C# ?
- What is the maximum possible value of an integer in Java ?
- What is the maximum length of string in Python?
- What is the maximum size of list in Python?
- How to check if a float value is a whole number in Python?
- Python - Return the maximum value of the Pandas Index
- Calculate the absolute value of float values in Numpy
- Comparing float value in PHP
- Python Pandas - Return the maximum value of the Timedelta object
- float() in Python
- Get the angle whose sine is float value argument in C#
- What is the maximum value represented by Number object in JavaScript?

Advertisements