码迷,mamicode.com
首页 > 其他好文 > 详细

find查找、split分隔、replace替换

时间:2017-02-13 20:18:39      阅读:163      评论:0      收藏:0      [点我收藏+]

标签:ret   ini   proc   logs   replace   笔记   span   finish   env   

1 #!/usr/bin/env python
2 r = "asada"
3 ret = r.find("d")
4 print(ret)#返回所在位置的索引
5 ret =r.split("d")
6 print(ret)#分隔
7 ret = r.replace("sa","k")
8 print(ret)#替换

结果C:\Python35\python3.exe F:/Python/笔记1/a1.py
3
[‘asa‘, ‘a‘]
akda


Process finished with exit code 0

 

 

find查找、split分隔、replace替换

标签:ret   ini   proc   logs   replace   笔记   span   finish   env   

原文地址:http://www.cnblogs.com/shiluoliming/p/6394985.html

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