Python

Python Nanを判定

簡単なようで、意外と調べることが多かったので、確認。math の isnan でチェックできる。

import math

nan = float('nan')
print(math.isnan(nan))  #True