[파이썬기초] 주민번호 뒷자리를 별표(*)로 변경하기
2020. 4. 2. 14:09ㆍ노트/Python : 프로그래밍
data="""
kim 950101-1234567
lee 970202-2345678
"""
result=[]
for line in data.split("\n"):
word_res=[]
for word in line.split(" "):
if len(word)==14 and word[:6].isdigit() and word[7:].isdigit():
w=word[0:6]+"-"+"*******"
word_res.append(w)
result.append(" ".join(word_res))
print("\n".join(result))
'노트 > Python : 프로그래밍' 카테고리의 다른 글
[파이썬] 데이터 변형 | 원핫인코딩 (0) | 2020.04.04 |
---|---|
[Kaggle] 자전거 수요 예측 분석 (bike-sharing demand prediction) (0) | 2020.04.02 |
[파이썬 기초] 데이터 그룹화 (0) | 2020.04.02 |
[파이썬기초] 데이터 정보 확인 및 참조 (0) | 2020.03.31 |
[Kaggle] TED-Talk 토픽모델링 (Topic modeling) (0) | 2020.03.28 |