본문 바로가기
판다스/함수 cheat sheet

[pandas] str.startswith, str.endswith

by 김판다t 2024. 2. 9.

시리즈의 각 셀이 특정 문자열로 시작 또는 종료 여부를 확인하는 함수

 

import pandas as pd
s = pd.Series(['cat01', 'cat02', 'dog01', '03cat', '01cow'])

 

 

 

 

 

 

 

 

 

 

 

 

'판다스 > 함수 cheat sheet' 카테고리의 다른 글

[pandas] groupby + transform  (0) 2024.02.22
[pandas] str.extractall  (0) 2024.02.09
[pandas] str.extract  (0) 2024.02.09
[pandas] str.contains  (0) 2024.02.09
[pandas] str.replace  (0) 2024.02.07