모음 제거 - 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()을 사용한 풀이를 발견했습니다. 깔끔하네요.

 


 

프로그래머스

코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요.

programmers.co.kr