count 집계함수를 이용하여 쉽게 풀수있음 def solution(s): answer = True pCount = s.count('p') + s.count('P') yCount = s.count('y') + s.count('Y') if pCount!=yCount: answer=False return answer
count 집계함수를 이용하여 쉽게 풀수있음
def solution(s): answer = True pCount = s.count('p') + s.count('P') yCount = s.count('y') + s.count('Y') if pCount!=yCount: answer=False return answer