1. capitalize() - 문자열 중 첫번째 캐릭터를 대문자로 변경 - 참고 : https://www.w3schools.com/python/ref_string_capitalize.asp >> str = 'hello world' >> x = str.capitalize() >> print(x) Hello world 2. casefold() - 문자열을 유니코드로 변환한 후 소문자로 변경, lower() 보다 더 많은 문자열 변환 가능 - 참고 : https://www.w3schools.com/python/ref_string_casefold.asp >> str = "abcAbCdßß" >> x = str.casefold() >> y = str.lower() >> print(f'casefold() : {x..