https://programmers.co.kr/learn/courses/30/lessons/12918
[정답]
def solution(s):
answer = True
if (len(s)==4 or len(s)==6) and s.isdigit():
answer=True
else:
answer=False
return answer
'알고리즘 공부 > 프로그래머스 > Python3' 카테고리의 다른 글
[프로그래머스] 이상한 문자 만들기 (0) | 2020.11.22 |
---|---|
[프로그래머스] 시저 암호 (0) | 2020.11.22 |
[프로그래머스] 문자열 내 p와 y의 개수 (0) | 2020.11.21 |
[프로그래머스] 약수의 합 (0) | 2020.11.20 |
[프로그래머스] 핸드폰 번호 가리기 (0) | 2020.11.20 |