Python title()方法

蟒蛇計劃發表於2020-10-31

描述:

Python title() 方法返回"標題化"的字串,就是說所有單詞都是以大寫開始,其餘字母均為小寫。

語法:

str.title();

引數:

NA.

返回值:

返回"標題化"的字串,就是說所有單詞都是以大寫開始。

例項:

>>> sen="My motherland is the people's Republic of China"
>>> sen.title()
"My Motherland Is The People'S Republic Of China"

相關文章