Answers for "python list fill nan"

0

python list fill nan

# You can convert to a pandas series and back to a list:
# pd.Series(listname).fillna(0).tolist()

listname = [1, np.nan, 2, None, 3]

pd.Series(listname, dtype=object).fillna(0).tolist()
# [1, 0, 2, 0, 3]
Posted by: Guest on July-26-2021

Python Answers by Framework

Browse Popular Code Answers by Language