Published
- 1 min read
delete unnamed 0 columns
The solution for this is noted below
delete unnamed 0 columns
Solution
df.drop(df.filter(regex="Unnamed"),axis=1, inplace=True)
Try other methods by searching on the site. That is if this doesn’t work