수정 전
df['comment'] = df['comment'].str.replace('\(.+?!^♡~\)', '')
수정 후
df['comment'] = df['comment'].str.replace('\(.+?!^♡~\)', '',regex=True)
참고 : https://needneo.tistory.com/164
반응형
수정 전
df['comment'] = df['comment'].str.replace('\(.+?!^♡~\)', '')
수정 후
df['comment'] = df['comment'].str.replace('\(.+?!^♡~\)', '',regex=True)
참고 : https://needneo.tistory.com/164
댓글