-Code
vowels = "aeiou"
s = input()
res = s
for i in range(len(s) - 1, -1, -1):
if s[i].lower() in vowels:
res = s[:i + 1] + "ntry"
break
print(res)
'Beakjoon&프로그래머스 > 파이썬' 카테고리의 다른 글
[백준/파이썬] 29002번 Космический корабль (0) | 2024.04.10 |
---|---|
[백준/파이썬] 17924번 Cooking Water (0) | 2024.04.09 |
[백준/파이썬] 24311번 TRAVEL (1) | 2024.04.07 |
[백준/파이썬] 31243번 ВРЕМЕ (1) | 2024.04.06 |
[백준/파이썬] 31746번 SciComLove (2024) (0) | 2024.04.05 |