
string method. 1~20
·
🐍 Python
Python String Methods1) capitalize() : 문자열의 첫 글자를 대문자로 변환text: str = "hello"print(text.capitalize()) # Hello2) casefold() : 문자열을 소문자로 변환text1: str = 'MARIo'text2: str = 'maRIO'print(text1.casefold()) # marioprint(text2.casefold()) # marioprint(text1.casefold() == text2.casefold()) # True3) center() : 문자열을 가운데 정렬text: str = "hello"print(text.center(20)) # hello print(text.center(20,..