Python title()方法
Python title()方法
Python title() 方法返回"标题化"的字符串,就是说所有单词都是以大写开始,其余字母均为小写(见 istitle())。
语法
title()方法语法:
str.title();
参数
- NA。
返回值
返回"标题化"的字符串,就是说所有单词都是以大写开始。
实例
以下实例展示了 title()函数的使用方法:
#!/usr/bin/python str = "this is string example....wow/b64/"; print str.title();
以上实例输出结果如下:
This Is String Example....Wow/b64/
相关文章
- Python 循环语句
- 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()方法