파이썬에서 문자열 string의 대문자, 소문자 다루는 법을 알아 보겠습니다. - string.isupper() : 문자열이 대문자 입니까? --> True or False - string.islower() : 문자열이 소문자 입니까? --> True or False - string.lower() : 문자열을 소문자로 만들어주세요. - string.upper() : 문자열을 대문자로 만들어주세요. s = 'apple' s.isupper() # False s = s.upper() s.isupper() # True s # 'APPLE' s.islower() # False s = s.lower() s #'apple' - string.swapcase() : 문자열에 있는 소문자, 대문자를 바꿔주세요 s = 'A..