Studio KimHippo :D
[Python / Algorithm Challenge ] 4. 문자열에서 숫자와 문자 따로 구분 본문
Python Study/Algorithm Challenge
[Python / Algorithm Challenge ] 4. 문자열에서 숫자와 문자 따로 구분
김작은하마 2019. 7. 8. 00:32# -*- coding : utf-8 -*-
# NOTE : 문자열을 입력받아 문자와 숫자와 따로 구분
import re
def split_str(in_str):
str = re.sub('[^a-zA-Zㄱ-힗 ]', '', in_str)
int = re.sub('[^0-9]', '', in_str)
print('str : ', str)
print('int : ', int)
split_str('c910m6ia 1ho')
'Python Study > Algorithm Challenge' 카테고리의 다른 글
[Python / Algorithm Challenge] 6. 선택 정렬(미완) (0) | 2019.07.08 |
---|---|
[Python / Algorithm Challenge] 5. 누가 MVP인가? (0) | 2019.07.08 |
[Python / Algorigthm Challenge ] 3. 1차원 평면 내 거리가 가장 짧은 두 점 추출 (0) | 2019.07.08 |
[Python / Algorithm Challenge] 2. 문자열 공백제거 (0) | 2019.07.08 |
[Python / Algorithm Challenge ] 1. 첫 번째 알고리즘 챌린지 (0) | 2019.07.08 |
Comments