본문 바로가기
Beakjoon&프로그래머스/파이썬

[프로그래머스/파이썬] 문자열 내 p와 y의 개수

by 현장 2021. 5. 23.

-코드

def solution(s):
    answer = True
    r1 = s.count("p") + s.count("P")
    r2 = s.count("y") + s.count("Y")
    if r1 != r2:
        answer = False
    return answer