码迷,mamicode.com
首页 > 编程语言 > 详细

python字符串内置函数汇总

时间:2017-11-16 14:10:41      阅读:135      评论:0      收藏:0      [点我收藏+]

标签:首字母   for   返回   第一个   lower   单词   python字符串   tle   字符   

1.capitalize 第一个单词首字母大写

2.title 每个单词首字母大写

3.upper 每个字母变大写

4.lower 每个字母变小写

5.len() 字符串长度

6.format() 格式化  print("{}".format(‘aa‘))

7.replace替换 str.replace

8.find() 字符串查找 str.find() 返回整型

9.split 分割返回列 str=“www.96net.com.cn” str.split(‘.‘) 返回 [‘www‘,‘96net‘,‘com,‘cn‘‘]

10.join()  列表链接字符串 (":").join(str)

 

python字符串内置函数汇总

标签:首字母   for   返回   第一个   lower   单词   python字符串   tle   字符   

原文地址:http://www.cnblogs.com/96net/p/7843885.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!