• Dark Arc
    link
    fedilink
    English
    28
    edit-2
    1 month ago

    Comparing floats for equality is generally a bad idea anyways.

    Floats should really only be used for approximate math. You need something like Java’s BigDecimal or BigInteger to handle floating point math with precision.

    Looks like this is the equivalent for Python:

    https://docs.python.org/3/library/decimal.html

    • Cethin
      cake
      link
      fedilink
      English
      51 month ago

      Comparing is fine, but it should be fuzzy. Less than and greater than are fine, so you basically should only be checking for withing a range of values, not a specific value.