Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- COUNT
- 알고리즘 풀이
- Python
- Unknown command: cask
- list.pop(0)
- 프로그래머스
- string
- List to String
- sort()
- cask
- RecursionError
- index
- Python 나머지
- python3
- List
- zip()
- 알고리즘
- list.sorted()
- 피보나치 수
- Boto3
- Modified Date
- set to list
- homebrew-core is a shallow clone.
- Split
- sting position
- Algorithm
- permutations
- Python 몫
- list to set
- List 초기화
Archives
- Today
- Total
데이터와 코드로 세상을 바라봅니다.
[Python 3] - String, Upper(), Lower(), Count(), Contain() 본문
[코드]
def solution(s):
return s.lower().count('p')==s.lower().count('y')
[참고자료]
www.geeksforgeeks.org/isupper-islower-lower-upper-python-applications/
stackoverflow.com/questions/3437059/does-python-have-a-string-contains-substring-method
stackoverflow.com/questions/1155617/count-the-number-occurrences-of-a-character-in-a-string
[문제] 문자열 내 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 |
'Code > Python' 카테고리의 다른 글
[Python3] - String reverse, String split (0) | 2020.11.18 |
---|---|
[Python3] - String, index, concat, add (0) | 2020.11.16 |
[Python 3] - list(), stack concept, pop(), len(), append() (0) | 2020.11.09 |
[Python 3] - List, sorted(), pop(), index() (0) | 2020.11.06 |
[Python 3] - Dictionary, Key, Value, Max, Min, Sort, Desc (0) | 2020.11.04 |