본문 바로가기
코딩테스트/Python

프로그래머스 스쿨 - 옹알이(1)(Python) - 복습 필요

by 보안매크로 2023. 9. 11.
728x90
def solution(babbling):
    answer = 0
    talk = ["aya", "ye", "woo", "ma"]
   
    for b in babbling:
        for w in talk:
            if w in b :
                b = b.replace(w, ' ')
        if len(b.strip()) == 0: # strip 맨앞, 맨뒤 공백 제거.    
            answer += 1
    return answer
728x90