본문 바로가기

Job Wanted/코테 - 프로그래머스

[프로그래머스] 코딩테스트 연습 > 연습문제 > 문자열 다루기 기본

728x90
반응형

다음에 조심해야할 점 ::

1. 문제를 잘 읽고 문제를 풀자

2. or 연산자와 and 연산자 헷갈리지 않기.

 

def solution(s):
    answer = True
    
    
    for _ in s:
        if _.isdigit() == False:
            answer = False
            
    if len(s)!=4 and len(s)!=6:
            answer = False
            
    print(len(s)) 
        
    return answer
728x90
반응형