📜  如何过滤掉 pandas df 中的所有 NaN 值 - Python 代码示例

📅  最后修改于: 2022-03-11 14:45:45.391000             🧑  作者: Mango

代码示例5
a = [[y for y in x if pd.notna(y)] for x in df.values.tolist()]
print (a)
[['str', 'aad', 'asd'], ['ddd'], ['xyz', 'abc'], ['btc', 'trz', 'abd']]