About 11,000,000 results
Open links in new tab
  1. python - Maximum and Minimum values for ints - Stack Overflow

    Sep 30, 2011 · How do I represent minimum and maximum values for integers in Python? In Java, we have Integer.MIN_VALUE and Integer.MAX_VALUE. See also: What is the maximum float in Python?.

  2. python - Find the greatest (largest, maximum) number in a list of ...

    Mar 8, 2023 · How can I easily find the greatest number in a given list of numbers? See also How do I find the maximum (larger, greater) of 2 numbers? - in that special case, the two values can also be …

  3. python - Maximum value for long integer - Stack Overflow

    Mar 25, 2012 · How can I assign the maximum value for a long integer to a variable, similar, for example, to C++'s LONG_MAX.

  4. python - How do I find the maximum (larger, greater) of 2 numbers ...

    See also Find the greatest (largest, maximum) number in a list of numbers - those approaches work (and are shown here), but two numbers can also be compared directly.

  5. What is the maximum float in Python? - Stack Overflow

    Mar 9, 2024 · The maximum integer in Python 2 is available by calling sys.maxint. What is the maximum float or long in Python? See also: Maximum and Minimum values for ints.

  6. Biggest python projects - Stack Overflow

    What is the biggest software development team that uses Python? I am wondering how well the dynamic type system scales to large development teams. It's pretty clear that at Google they have C++ an...

  7. python - How to find the maximum number in a list using a loop?

    To add some explanation to the loop solution: To get the biggest number, you iterate through the list and remember the biggest number you have encountered so far. That way when you reach the end, you …

  8. Find and draw the largest contour in opencv on a specific color (Python ...

    Jun 16, 2017 · 77 You can start by defining a mask in the range of the red tones of the book you are looking for. Then you can just find the contour with the biggest area and draw the rectangular shape …

  9. Handling very large numbers in Python - Stack Overflow

    257 Python supports a "bignum" integer type which can work with arbitrarily large numbers. In Python 2.5+, this type is called long and is separate from the int type, but the interpreter will automatically …

  10. What is the range of values a float can have in Python?

    Dec 2, 2009 · What are its smallest and biggest values in python?