공부하기/백준

[Python] 백준 풀기 15000 - CAPS

XEV 2023. 2. 23. 23:43

파이썬 백준 15000번

브론즈 4

https://www.acmicpc.net/problem/15000

 

15000번: CAPS

Earth is under attack! Messages need to be sent to the Earth Defense Force (EDF) that makes clear that the situation is dire. The EDF’s strongest forces consist of mechs (huge bipedal robots) that are piloted by Japanese teenagers. To make sure that the

www.acmicpc.net

 

 

 

 

 

문제 보기

분류: 구현, 문자열

 

 

 

 

 

문제 풀기

메서드 upper() 을 사용하여 간편하게 모든 소문자를 대문자로 변경할 수 있다.

주어진 입력 문자를 string 으로 저장을 하고 upper() 을 적용하면 모든 알파벳이 대문자로 변환되어 출력된다.

 

 

 

 

 

코드 보기

import sys
inputdata = sys.stdin.readline


def fnToUpperCase(text):
    upperText = text.upper()
    print(upperText)


if __name__ == "__main__":
    text = str(inputdata().strip())
    
    fnToUpperCase(text)