문자열 s의 길이가 4 혹은 6이고, 숫자로만 구성돼있는지 확인해주는 함수, solution을 완성하세요. 예를 들어 s가 "a234"이면 False를 리턴하고 "1234"라면 True를 리턴하면 됩니다.
s | return |
---|---|
"a234" | false |
"1234" | true |
def solution(s):
answer = False
if len(s) == 4 or len(s) == 6:
try:
int(s)
answer = True
except:
pass
return answer
try
, except
를 사용해서 데이터 타입 확인str.isdigit()
: Return True if all characters in the string are digits and there is at least one character, False otherwise. (문자열이 숫자인지 확인).isalpha()
: 문자열이 문자인지 확인하는 함수