728x90
df['email_slice'] = df['email'].str.slice(start=0, stop=5) # 인덱스 사이 값 반환
사업자등록번호 중간 두자리 자르기 (ex.123-45-67890)
df['reg_no'] = df['reg_no'].str.slice(start=3, stop=5)
https://blog.naver.com/wideeyed/221603778414
728x90
'Python' 카테고리의 다른 글
'str' object has no attribute 'capabilities' (0) | 2023.08.14 |
---|---|
module 'telegram' has no attribute 'Bot' (0) | 2023.08.14 |
dataframe column type to string (0) | 2023.07.25 |
The truth value of a Series is ambiguous. Use a.empty, a.bool(), a.item(), a.any() or a.all(). (0) | 2023.07.25 |
딥러닝 클래스/데이터 불균형 (0) | 2023.07.19 |