Python title()方法
Python title()方法
Python title() 方法返回"標(biāo)題化"的字符串,就是說所有單詞都是以大寫開始,其余字母均為小寫(見 istitle())。
語法
title()方法語法:
str.title();
參數(shù)
- NA。
返回值
返回"標(biāo)題化"的字符串,就是說所有單詞都是以大寫開始。
實例
以下實例展示了 title()函數(shù)的使用方法:
#!/usr/bin/python str = "this is string example....wow/b64/"; print str.title();
以上實例輸出結(jié)果如下:
This Is String Example....Wow/b64/
相關(guān)文章
- Python 循環(huán)語句
- Python 多線程
- Python JSON
- Python 棧
- Python 搜索樹
- Python3 集合(Set)
- Python3 命名空間
- Python3 作用域
- Python File truncate() 方法
- Python os.closerange() 方法
- Python os.mkfifo() 方法
- Python os.stat_float_times() 方法
- Python isdigit()方法
- Python isspace()方法
- Python maketrans()方法
- Python rstrip()方法
- Python startswith()方法
- Python 字典 Dictionary update()方法
- Python Tuple 元組 cmp()方法
- Python time sleep()方法