Answers for "check if there is any nan in list"

0

check if something is nan python

import math
print math.isnan(float('NaN'))OutputTrue
print math.isnan(1.0)OutputFalse
Posted by: Guest on October-14-2020

Code answers related to "check if there is any nan in list"

Browse Popular Code Answers by Language