-
[Python] isdigit - Decide if only numbers exist. (문자열에 숫자만 있는지 확인하는 메소드)Python/Python Programming 2019. 10. 15. 22:05
isdigit() : 문자열이 숫자로만 구성되어 있으며, 빈칸이 없으면 True를 반환
문자열이 숫자로만 구성시 True 리턴
'12345'.isdigit() ------------------ True
문자열이 숫자와 문자로 구성시 False 리턴
'12345abc한글'.isdigit() ------------------------ False
문자열이 숫자와 특수기호로 구성시 False 리턴
'12345@'.isdigit() ------------------ False
문자열이 숫자와 공백 구성시 False 리턴
'12345 '.isdigit() ------------------ False
활용. (모든 리스트의 요소들이 숫자인지 확인)
list_A = [ 1, 12, 43, 4, 15 ] ''.join(map(str,list_A)).isdigit() ---------------------------------- True list_A = [ 1, 12, 43, 4, 15, 'a' ] # 문자 a가 포함되어 있어 False ''.join(map(str,list_A)).isdigit() ---------------------------------- False
'Python > Python Programming' 카테고리의 다른 글
[Python] Directory make and remove with subdirectories. (하위 디렉토리 포함 생성과 삭제) (0) 2019.10.18 [Python] Directory make and remove. (디렉토리 생성과 삭제) (0) 2019.10.18 [Python] index 함수 - 배열에서 원하는 값의 위치 찾기 (0) 2019.10.16 [Python] isalnum 문자열에 숫자 또는 알파벳만 있는지 확인하는 메소드 (0) 2019.10.15 [Python] 2개의 리스트의 요소들을 합쳐서 딕셔너리 타입으로 변환 (0) 2019.10.14 [Python] To obtain the average value of a list number element. (리스트 숫자 요소의 평균값 구하기) (0) 2019.10.14 [Python] Add date string and time string of pandas Dataframe (pandas의 date와 time 문자열을 합친 날짜형식 만들기) (0) 2019.10.14 [Python] Convert time string type to datetime date type. (날짜문자열을 타임 타입으로 변환) (0) 2019.10.14