소연의_개발일지
article thumbnail
Published 2023. 3. 16. 19:34
파이썬_title()함수 개발공부/Python

파이썬 문자열의  'title()' 함수는

각 단어의 첫 글자를 대문자로 변경하여 문자열을 반환하는 함수이다.

이 함수는 문자열에서 단어의 구분을 공백 문자로 인식한다.

 


stackoverflow에 비슷한 질문이 있다.

https://stackoverflow.com/questions/8347048/how-to-convert-string-to-title-case-in-python

 

How to convert string to Title Case in Python?

Example: HILO -> Hilo new york -> New York SAN FRANCISCO -> San Francisco Is there a library or standard way to perform this task?

stackoverflow.com

답변


Aidan H라는 사람이 답변을 기가막히게 답변해줌

sentence = "THey'Re biLL's FrIEndS frOM ThE Uk".title()
print(sentence)

그러니까 이걸 실행하면

이렇게 나온다.


https://docs.python.org/3/library/stdtypes.html?highlight=title#bytearray.title 

 

Built-in Types

The following sections describe the standard types that are built into the interpreter. The principal built-in types are numerics, sequences, mappings, classes, instances and exceptions. Some colle...

docs.python.org

에서도 title()함수의 자세한 내용을 읽을 수 있다.

 

profile

소연의_개발일지

@ssoyxon

포스팅이 좋았다면 "좋아요❤️" 또는 "구독👍🏻" 해주세요!