파이썬 변수값에서 숫자만 추출하기
import re #re API findall 함수 사용을 위한 모듈
text = "fdsjaklfljkewf 4 43423432"
re.findall("\d+", text)
결과값 "[443423432]"
re.sub(r'[^0-9]', '', text)
결과값 "443423432"
text = "fdsjaklfljkewf 4 43423432"
결과값 "[443423432]"
결과값 "443423432"