Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 편스토랑 우승상품
- ChatGPT
- 백준
- 프로그래머스 파이썬
- programmers
- 데이콘
- Baekjoon
- PYTHON
- 파이썬
- hackerrank
- 편스토랑
- Docker
- 맥북
- leetcode
- gs25
- 캐치카페
- 우분투
- 금융문자분석경진대회
- github
- Kaggle
- AI 경진대회
- SW Expert Academy
- Git
- 프로그래머스
- 코로나19
- ubuntu
- Real or Not? NLP with Disaster Tweets
- dacon
- 더현대서울 맛집
- 자연어처리
Archives
- Today
- Total
솜씨좋은장씨
[BaekJoon] 1264번 : 모음의 개수 (Python) 본문
728x90
반응형
1일 1문제 66일차!
오늘의 문제는 백준에 있는 모음의 개수입니다.
Solution
vowel_list = ['a', 'e', 'i', 'o', 'u', 'A', 'E', 'I', 'O', 'U']
while True:
string = str(input())
if string == '#':
break
string = string.replace(' ', '').replace(',', '').replace('.', '').replace('!', '').replace('?', '')
string_list = list(string)
vowels = [word for word in string_list if word in vowel_list]
print(len(vowels))
'Programming > 코딩 1일 1문제' 카테고리의 다른 글
[BaekJoon] 5586번 : JOI와 IOI (Python) (0) | 2020.04.14 |
---|---|
[Programmers] 스택/큐 : 다리를 지나는 트럭 (Python) (0) | 2020.04.13 |
[Programmers] 해시 : 위장 (Python) (0) | 2020.04.11 |
[BaekJoon] 1912번 : 연속합 (Python) (0) | 2020.04.10 |
[Programmers] 힙 : 디스크 컨트롤러 (Python) (0) | 2020.04.09 |
Comments