Python title()方法
Python title()方法
Python title() 方法返回"標(biāo)題化"的字符串,就是說(shuō)所有單詞都是以大寫(xiě)開(kāi)始,其余字母均為小寫(xiě)(見(jiàn) istitle())。
語(yǔ)法
title()方法語(yǔ)法:
str.title();
參數(shù)
- NA。
返回值
返回"標(biāo)題化"的字符串,就是說(shuō)所有單詞都是以大寫(xiě)開(kāi)始。
實(shí)例
以下實(shí)例展示了 title()函數(shù)的使用方法:
#!/usr/bin/python str = "this is string example....wow/b64/"; print str.title();
以上實(shí)例輸出結(jié)果如下:
This Is String Example....Wow/b64/
相關(guān)文章
- Python 循環(huán)語(yǔ)句
- Python 多線程
- Python JSON
- Python 棧
- Python 搜索樹(shù)
- 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()方法