모음 제거 - Python
2023. 9. 29. 16:50ㆍ공부/📝 프로그래머스
def solution(my_string):
for item in ["a", "e", "i", "o", "u"]:
my_string = my_string.replace(item, "")
return my_string
# Test Cases
print(solution("bus"))
print(solution("nice to meet you"))
replace()를 사용했습니다.
def solution(my_string):
return "".join([i for i in my_string if not(i in "aeiou")])
join()을 사용한 풀이를 발견했습니다. 깔끔하네요.
'공부 > 📝 프로그래머스' 카테고리의 다른 글
숨어있는 숫자의 덧셈 (1) - Python (0) | 2023.09.29 |
---|---|
문자열 정렬하기 (1) - Python (0) | 2023.09.29 |
합성수 찾기 - Python (0) | 2023.09.24 |
2차원으로 만들기 - Python (0) | 2023.09.22 |
구슬을 나누는 경우의 수 - Python (0) | 2023.09.22 |