drop rows with nan value python code example
Example 1: how to delete nan values in python
x = x[~numpy.isnan(x)]
Example 2: when converting from dataframe to list delete nan values
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']]