check if variable is not np.nan code example
Example 1: numpy is not nan
a = a[~np.isnan(a)]
Example 2: check if var is NaN
let b=1
let n=readline()
if(isNaN(b)){
console.log("You typed 0!")
}else{
console.log("You did not type 0!")
}
a = a[~np.isnan(a)]
let b=1
let n=readline()
if(isNaN(b)){
console.log("You typed 0!")
}else{
console.log("You did not type 0!")
}