Skip to content
Advertisement

Python: how to delete space in column of lists?

I have a dataframe like this:

JavaScript

Some records in the column ‘1_5000_pi025’ has the space between ‘ and number, for example:

JavaScript

Space between ‘ and 73221_902642_M-34-57-A-c-3-2.tif. I was trying few solution but didn’t work. How can I delete space from every record in the column ‘1_5000_pi025’?

Didn’t work:

1 . df['1_5000_pi025'] = df['1_5000_pi025'].str.strip()

2 . df_all_quality_roofs['1_5000_pi025'] = [x.replace(' ', '') for x in df_all_quality_roofs['1_5000_pi025']]

Error: ‘AttributeError: ‘list’ object has no attribute ‘replace’

Advertisement

Answer

.str doesn’t work because it contains a list. Try:

JavaScript
Advertisement