파이썬 문자열 메서드

2490 단어 python
파이썬에는 많은 내장 메서드가 있습니다. 이 메서드는 데이터 유형에 속합니다. 이제 가장 일반적인 문자열 메서드를 설명하겠습니다.

대문자 = 이 메서드는 일부 문자열을 반환하지만 첫 번째 문자는 대문자입니다.

my_string = 'random word'
capitalize_word = my_string.capitalize()
print(capitalize_word)

output : 'Random word'



lower = 이 메서드는 모든 문자가 소문자로 된 문자열의 복사본을 반환합니다.

my_string = 'Random WORD'
lower_word = my_string.lower()
print(lower_word)

output : 'random word'



upper = 이 메서드는 모든 문자가 대문자인 문자열의 복사본을 반환합니다.

my_string = 'Random WORD'
upper_word = my_string.upper()
print(upper_word)

output : 'RANDOM WORD'



swapcase() = 이 메서드는 문자를 변경합니다. 문자가 대문자이면 소문자를 변경하고 반대의 경우에도 동일하게 수행합니다.

my_string = 'RANDOM word'
swap_word = my_string.swapcase()
print(swap_word)

output : 'random WORD'

좋은 웹페이지 즐겨찾기