본문 바로가기
python-algorithm

[백준] 5524

by 무적김두칠 2021. 1. 9.

1
2
3
4
import sys
for _ in range(int(sys.stdin.readline())):
    s=sys.stdin.readline()
    print(s.lower(),end='')
cs

내장함수 lower()을 이용해서 소문자로 출력하면됩니당

반응형

'python-algorithm' 카테고리의 다른 글

[백준] 5586  (0) 2021.01.09
[백준] 5576  (0) 2021.01.09
[백준] 5363  (0) 2021.01.09
[백준] 5355  (0) 2021.01.09
[백준] 5218  (0) 2021.01.09

댓글