데이터와 코드로 세상을 바라봅니다.

[Python 3] - String, Upper(), Lower(), Count(), Contain() 본문

Code/Python

[Python 3] - String, Upper(), Lower(), Count(), Contain()

코드우드 2020. 11. 5. 14:41

[코드]

def solution(s):
    return s.lower().count('p')==s.lower().count('y')

[참고자료]

 

www.geeksforgeeks.org/isupper-islower-lower-upper-python-applications/

 

isupper(), islower(), lower(), upper() in Python and their applications - GeeksforGeeks

A Computer Science portal for geeks. It contains well written, well thought and well explained computer science and programming articles, quizzes and practice/competitive programming/company interview Questions.

www.geeksforgeeks.org

stackoverflow.com/questions/3437059/does-python-have-a-string-contains-substring-method

 

Does Python have a string 'contains' substring method?

I'm looking for a string.contains or string.indexof method in Python. I want to do: if not somestring.contains("blah"): continue

stackoverflow.com

stackoverflow.com/questions/1155617/count-the-number-occurrences-of-a-character-in-a-string

 

Count the number occurrences of a character in a string

What's the simplest way to count the number of occurrences of a character in a string? e.g. count the number of times 'a' appears in 'Mary had a little lamb'

stackoverflow.com


[문제] 문자열 내 p와 y의 개수

문제 설명

 

대문자와 소문자가 섞여있는 문자열 s가 주어집니다. s에 'p'의 개수와 'y'의 개수를 비교해 같으면 True, 다르면 False를 return 하는 solution를 완성하세요. 'p', 'y' 모두 하나도 없는 경우는 항상 True를 리턴합니다. 단, 개수를 비교할 때 대문자와 소문자는 구별하지 않습니다.

예를 들어 s가 pPoooyY면 true를 return하고 Pyy라면 false를 return합니다.

제한사항

  • 문자열 s의 길이 : 50 이하의 자연수
  • 문자열 s는 알파벳으로만 이루어져 있습니다.

입출력 예

sanswer

pPoooyY true
Pyy false