def solution(s):
answer = 0
if len(s) >= 1 and len(s) <= 5:
answer = int(s)
return answer
'Coding Test > Programmers_Python' 카테고리의 다른 글
[프로그래머스/python] 소수 찾기 (0) | 2020.07.13 |
---|---|
[프로그래머스/python] 예산 (0) | 2020.07.13 |
[프로그래머스/python] 정수 제곱근 판별 (0) | 2020.07.10 |
[프로그래머스/python] K번째수 (0) | 2020.07.10 |
[프로그래머스/python] 완주하지 못한 선수 (0) | 2020.07.09 |