Untitled
unknown
plain_text
2 years ago
118 B
10
Indexable
columns_to_replace = df[['track', 'artist', 'genre']] for col in columns_to_replace: col = col.fillna('unknown')
Editor is loading...
columns_to_replace = df[['track', 'artist', 'genre']] for col in columns_to_replace: col = col.fillna('unknown')