upper lower isupper / islower capitalize title upper 함수 - 문자열에서 영어 소문자에 해당하는 부분을 대문자로 바꿔주는 함수. syntax : method.upper() ex) >>> A = "hello welcome" >>> B = A.upper() >>> print (B) 'HELLO WELCOME' lower 함수 - 문자열에서 영어 대문자에 해당하는 부분을 소문자로 바꿔주는 함수. syntax : method.lower() ex) >>> A = "HELLO WELCOME" >>> B = A.lower() >>> print (B) 'hello welcome' isupper, islower 함수 isupper 함수 - 문자열 안에 있는 문자가 '전부' 대문자..