会员
周边
众包
新闻
博问
闪存
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
简洁模式
...
退出登录
注册
登录
左右1
Powered by
博客园
博客园
|
首页
|
新随笔
|
联系
|
订阅
|
管理
2017年9月5日
python的re模块理解(re.compile、re.match、re.search)
摘要: import rehelp(re.compile)'''输出结果为:Help on function compile in module re:compile(pattern, flags=0) Compile a regular expression pattern, returning a pa
阅读全文
posted @ 2017-09-05 22:34 左右1
阅读(155968)
评论(4)
推荐(2)
编辑
字符串基本操作汇总
摘要: 从中可知:\t:表示制表符,相当于tab键;\n相当于换行符,会换一行;r:使转义符失效。 4 #使用索引截取字符串word ="world"print word[4]#>>> d#使用split()获取子串sentence = 'Bob said:1,2,3,4'print "使用空格取子串:",
阅读全文
posted @ 2017-09-05 19:03 左右1
阅读(370)
评论(0)
推荐(0)
编辑
元组的常见操作
摘要: '''元组:元组的创建元组的访问元组的遍历'''tuple=("apple","banana","grape","orange")print tuple[-1]print tuple[-2]#orange#grapetuple2=tuple[1:3]tuple3=tuple[0:-2]tuple4=
阅读全文
posted @ 2017-09-05 16:31 左右1
阅读(358)
评论(0)
推荐(0)
编辑