https://school.programmers.co.kr/learn/courses/30/lessons/12918
def solution(s): if (len(s) == 4 or len(s) == 6) and s.isdigit(): return True return False
isdigit() 문자열이 0을 포함한 양수형 정수로만 이루어져있는지 확인하는 함수 실수, 소수의 -, .도 문자열로 판별
isdigit()