“Usuń Python DataFrame Spaces” Kod odpowiedzi

Usuń Python DataFrame Spaces

cols = df.select_dtypes(['object']).columns
df[cols] = df[cols].apply(lambda x: x.str.strip())
print (df)
                     A    B     C
0                  A b  NaN   3.0
1                  NaN  NaN   3.0
2               random  NaN   4.0
3  any txt is possible  2 1  22.0
4                       NaN  99.0
5                 help  NaN   NaN
Mankwe

Usuń Python DataFrame Spaces

df = df.applymap(lambda x: x.strip() if isinstance(x, str) else x)
print (df)
                     A    B     C
0                  A b    2   3.0
1                  NaN    2   3.0
2               random   43   4.0
3  any txt is possible  2 1  22.0
4                        23  99.0
5                 help   23   NaN
Mankwe

Odpowiedzi podobne do “Usuń Python DataFrame Spaces”

Pytania podobne do “Usuń Python DataFrame Spaces”

Więcej pokrewnych odpowiedzi na “Usuń Python DataFrame Spaces” w Python

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu