[프로그래머스 파이썬] 문자열 다루기 기본

일단 해볼게·2023년 3월 18일
0

프로그래머스

목록 보기
58/106

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을 포함한 양수형 정수로만 이루어져있는지 확인하는 함수
  • 실수, 소수의 -, .도 문자열로 판별
profile
시도하고 More Do하는 백엔드 개발자입니다.

0개의 댓글