Written by
최태열
on
on
[Python][프로그래머스][Level1] 문자열 내 p와 y의 개수
[Python][프로그래머스][Level1] 문자열 내 p와 y의 개수
코드
def solution(s):
return True if s.lower().count('p')==s.lower().count('y') else False
문자열을 소문자화 시키고 p와 y의 개수를 count 해준다.
Discussion and feedback