Programming Blog

특정 문자 포함하는 행 추출 본문

빅데이터 분석/Pandas

특정 문자 포함하는 행 추출

Go-ong 2021. 9. 30. 11:12
df = df[df['Column Name'].str.contains('condition text')]

Column Name : 컬럼명

condition text : 특정 문자

Comments