CodingTest/[프로그래머스 LV.0]

프로그래머스 LV.0 - 모음 제거[Python]

짱엉 2023. 1. 22. 00:22
728x90
def solution(my_string):
    return "".join([i for i in my_string if not(i in "aeiou")])
728x90