본문 바로가기
Beakjoon&프로그래머스/파이썬

[백준/파이썬]2954번 창영이의 일기장

by 현장 2021. 6. 21.

-코드

c = input()
i = 0
while i < len(c):
    if c[i] == 'a' or c[i] == 'e' or c[i] == 'i' or c[i] == 'o' or c[i] == 'u':
        print(c[i], end='')
        i += 3
    else:
        print(c[i], end='')
        i += 1