Python title()方法

2021-09-04 17:17 更新

Python title()方法


描述

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

語法

title()方法語法:

str.title();

參數(shù)

  • NA。

返回值

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

實(shí)例

以下實(shí)例展示了 title()函數(shù)的使用方法:

#!/usr/bin/python

str = "this is string example....wow!!!";
print str.title();

以上實(shí)例輸出結(jié)果如下:

This Is String Example....Wow!!!
以上內(nèi)容是否對您有幫助:
在線筆記
App下載
App下載

掃描二維碼

下載編程獅App

公眾號
微信公眾號

編程獅公眾號