string.capwords () 단어마다 알파벳 대문자

1494 단어 String
코드:

  
    
import string

s
= ' The quick brown fox jumped over the lazy dog. '

print s
print string.capwords(s)

결과:

  
    
The quick brown fox jumped over the lazy dog .
The Quick Brown Fox Jumped Over The Lazy Dog
.
. . .

string 모듈의capwords () 함수는 단어마다 알파벳을 대문자로 쓸 수 있는 것 이외에 양쪽의 빈칸을 제거하고 연속된 빈칸을 하나의 빈칸으로 대체할 수 있습니다.

좋은 웹페이지 즐겨찾기