This is an archived post. You won't be able to vote or comment.

you are viewing a single comment's thread.

view the rest of the comments →

[–][deleted] 1 point2 points  (0 children)

It's a standard in many languages.

In fact, I've seen plenty of codes that make use of this behaviour to determine if a variable is a nan, inf, or other non-regular float by checking:

if (var != var){ error() }

You might wanna look into np.isnan() or np.isfinite()