-Code
vowel = ['a', 'e', 'i', 'o', 'u']
for i in range(1, int(input()) + 1):
name = input()
if name[-1] == 'y':
print(f"Case #{i}: {name} is ruled by nobody.")
elif name[-1] in vowel:
print(f"Case #{i}: {name} is ruled by a queen.")
else:
print(f"Case #{i}: {name} is ruled by a king.")
'Beakjoon&프로그래머스 > 파이썬' 카테고리의 다른 글
[백준/파이썬] 13772번 Holes (0) | 2023.06.09 |
---|---|
[백준/파이썬] 4581번 Voting (0) | 2023.06.08 |
[백준/파이썬] 15184번 Letter Count (0) | 2023.06.06 |
[백준/파이썬] 25905번 장인은 도구를 탓하지 않는다 (0) | 2023.06.05 |
[백준/파이썬] 8912번 Sales (0) | 2023.06.04 |