def solution(s):
if len(s) == 4 or len(s) == 6:
try:
if int(s):
return True
except:
return False
else:
return False
'Coding Test > Programmers_Python' 카테고리의 다른 글
[프로그래머스/python] 자연수 뒤집어 배열로 만들기 (0) | 2020.07.09 |
---|---|
[프로그래머스/python] 최대공약수와 최대공배수 (0) | 2020.07.08 |
[프로그래머스/python] 행렬의 덧셈 (0) | 2020.07.08 |
[프로그래머스/python] 하샤드 수 (0) | 2020.07.08 |
[프로그래머스/python] x만큼 간격이 있는 n개의 숫자 (0) | 2020.07.07 |