text = input() big = text.upper() print(big)
upper메서드 문자열을 전부 대문자로 바꿔주는 메서드이다.
upper
lower메서드 문자열을 전부 소문자로 바꿔주는 메서드이다.
lower
isupper메서드 문자열이 대문자인지 물어보는 메서드이다.
isupper
islower메서드 문자열이 소문자인지 물어보는 메서드이다.
islower