파이썬 문자열 메서드
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'
Reference
이 문제에 관하여(파이썬 문자열 메서드), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/brayanpotosi/python-string-methods-50m0텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)