상세 컨텐츠

본문 제목

(Python) 문자열에서 모음 지우기

Python/문제풀이

by 코딩하는 낙타 2020. 1. 14. 08:52

본문

1
2
3
4
sentence = 'Python is powerful... and fast; plays well with others; runs everywhere; is friendly & easy to learn; is Open.'
result = [i for i in sentence if i != 'a' and i if i != 'e' and i if i != 'i' and i if i != 'o' and i if i != 'u']
 
print("".join([str(i) for i in result]))
 

리스트 내포 기능

for문에 if문을 연달아 넣고 싶을 때 and 나 or을 사용하여 조건을 세부적으로 조정한다.

관련글 더보기

댓글 영역