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
- SW Expert Academy
- github
- 백준
- Docker
- hackerrank
- 편스토랑
- AI 경진대회
- 우분투
- 맥북
- Baekjoon
- 데이콘
- ChatGPT
- 파이썬
- 금융문자분석경진대회
- leetcode
- 프로그래머스
- 더현대서울 맛집
- Kaggle
- 캐치카페
- programmers
- Git
- PYTHON
- 편스토랑 우승상품
- ubuntu
- 코로나19
- 프로그래머스 파이썬
- dacon
- Real or Not? NLP with Disaster Tweets
- 자연어처리
- gs25
Archives
- Today
- Total
솜씨좋은장씨
[SW Expert Academy] 4406번 : 모음이 보이지 않는 사람 (Python) 본문
728x90
반응형
코딩 1일 1문제! 오늘의 문제는 SW Expert Academy의 모음이 보이지 않는 사람 입니다.
👨🏻💻 코드 ( Solution )
def who_can_not_see_the_vowels(words):
vowels = ['a', 'e', 'i', 'o', 'u']
characters = [word for word in list(words) if word not in vowels]
return "".join(characters)
if __name__ == "__main__":
for idx in range(int(input())):
words = input()
print(f"#{idx+1} {who_can_not_see_the_vowels(words)}")
'Programming > 코딩 1일 1문제' 카테고리의 다른 글
[SW Expert Academy] 1976번 : 시각 덧셈 (Python) (0) | 2021.11.30 |
---|---|
[SW Expert Academy] 1966번 : 숫자를 정렬하자 (Python) (1) | 2021.11.29 |
[SW Expert Academy] 1948번 : 날짜 계산기 (Python) (0) | 2021.11.27 |
[SW Expert Academy] 2063번 : 중간값 찾기 (Python) (0) | 2021.11.26 |
[BaekJoon] 1026번 : 보물 (Python) (1) | 2021.11.25 |
Comments