[Python] 문자열 처리 :: 양 끝 공백제거/맨 앞 공백제거/맨 뒤 공백제거
https://mizykk.tistory.com/2418.02.2020 · 데이터프레임 전체 혹은 한 컬럼에 strip (), rstrip (), lstrip ()을 그대로 적용하면 오류가 난다. 'DataFrame' object has no attribute 'strip' 'Series' object has no attribute 'strip' 이때 컬럼별로 적용하려면 .str. 을 입력해주어야 한다. # 양쪽 공백 제거 df [ 'fruit' ].str.strip () # 오른쪽 공백 제거 df [ 'fruit' ].str.rstrip () # 왼쪽 공백 제거 df [ 'fruit' ].str.lstrip ()
pandas.Series.str.strip — pandas 1.3.5 documentation
pandas.pydata.org › pandaspandas.Series.str.strip. ¶. Remove leading and trailing characters. Strip whitespaces (including newlines) or a set of specified characters from each string in the Series/Index from left and right sides. Equivalent to str.strip (). Specifying the set of characters to be removed. All combinations of this set of characters will be stripped.