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

[pandas] str.contains

by 김판다t 2024. 2. 9.

시리즈의 각 셀이 특정 문자열을 포함하고 있는지 확인하는 함수

 

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

 

 

 

 

str.startswith 함수와 str.endswith 함수를 사용하면 특정 문자열로 시작과 종결여부를 확인할 수 있다.

 

 

 

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

[pandas] str.startswith, str.endswith  (0) 2024.02.09
[pandas] str.extract  (0) 2024.02.09
[pandas] str.replace  (0) 2024.02.07
[pandas] str.split  (0) 2024.02.07
[pandas] str.strip  (0) 2024.02.07