描述
Python title() 方法返回"標題化"的字符串,就是說所有單詞都是以大寫開始,其余字母均為小寫。
語法
title() 方法語法:
S.title()
參數
- 無。
返回值
返回"標題化"的字符串,就是說所有單詞都是以大寫開始。
實例
以下實例展示了 title() 方法的使用方法:
#!/usr/bin/python S = "this is string example from runoob....wow!!!" print (S.title())
以上實例輸出結果如下:
This Is String Example From Runoob....Wow!!!