728x90
반응형
단순 문자열 문제이다.
for _ in range(int(input())):
s = list(input())
s[0] = s[0].upper()
print(''.join(s))
728x90
반응형
'Agorithm > 백준 알고리즘' 카테고리의 다른 글
백준 알고리즘 18113번 그르다 김가놈(python) (0) | 2021.03.09 |
---|---|
백준 알고리즘 4564번 숫자 카드놀이(python) (0) | 2021.03.08 |
백준 알고리즘 4328번 기초 나머지 계산(python) (0) | 2021.03.08 |
백준 알고리즘 15178번 Angles(python) (0) | 2021.03.08 |
백준 알고리즘 15340번 Sim Card(python) (0) | 2021.03.08 |