모음 제거

kyle·2023년 3월 6일
0
post-custom-banner

문제 설명
영어에선 a, e, i, o, u 다섯 가지 알파벳을 모음으로 분류합니다. 문자열 my_string이 매개변수로 주어질 때 모음을 제거한 문자열을 return하도록 solution 함수를 완성해주세요.

제한사항
my_string은 소문자와 공백으로 이루어져 있습니다.
1 ≤ my_string의 길이 ≤ 1,000

입출력 예

emergencyresult
"bus""bs"
"nice to meet you""nc t mt y"

구현 코드

def solution(my_string):
    moum = ['a','e','i','o','u']
    listStr = list(my_string)
    answer = []
    ans = ''
    for i in listStr:
        # 리스트에 원소가 있는지 판별
        if i in moum:
            continue
        else:
            answer.append(i)
    ans = ''.join(answer)
    return ans


        
profile
성장하는 개발자
post-custom-banner

0개의 댓글