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을 사용하여 조건을 세부적으로 조정한다.
파이썬으로 풀어보는 백준 15649번 N과 M (0) | 2020.01.15 |
---|---|
파이썬으로 풀어보는 백준 11650번, 11651번: 좌표 정렬하기 (0) | 2020.01.15 |
파이썬으로 풀어보는 백준 2798번: 블랙잭 (0) | 2020.01.10 |
파이썬으로 풀어보는 백준 11729번: 하노이 탑 이동 순서 (0) | 2020.01.10 |
파이썬으로 풀어보는 백준 2447번: 별 찍기 - 10 (0) | 2020.01.09 |
댓글 영역