[문제 링크] 👇 SW Expert AcademySW 프로그래밍 역량 강화에 도움이 되는 다양한 학습 컨텐츠를 확인하세요!swexpertacademy.com 풀이모음을 리스트에 따로 저장vowel = ["a", "e", "i", "o", "u"] for문에서 문자를 하나씩 꺼내어 모음 리스트에 해당 문자가 없으면 결과에 담는다. if i not in vowel: ※ 앞 뒤 개행문자 제거 - strip()word = input().strip() 앞 쪽만 제거하고 싶으면 - lstrip() : left strip이라고 생각하면 된다.뒤 쪽만 제거하고 싶으면 - rstrip() : righr strip이라고 생각하면 된다. Solutiontest_case = int(input())for tc in ran..