Список Python замените NAN на 0
mylist = [0 if x != x else x for x in mylist]
Disgusted Dugong
mylist = [0 if x != x else x for x in mylist]