尔雅网站开发实战,上海建筑企业资质查询平台,做网站学什么专业,wordpress换模版1.正则表达式如何写#xff1f;
序号实例说明1.匹配任何字符(除换行符以外)2\d等效于[0-9]#xff0c;匹配数字3\D等效于[^0-9]#xff0c;匹配非数字4\s等效于[\t\r\n\f]#xff0c;匹配空格字符5\S等效于[^\t\r\n\f]#xff0c;匹配非空格字符6\w等效于[A-Za-z0-9]
序号实例说明1.匹配任何字符(除换行符以外)2\d等效于[0-9]匹配数字3\D等效于[^0-9]匹配非数字4\s等效于[\t\r\n\f]匹配空格字符5\S等效于[^\t\r\n\f]匹配非空格字符6\w等效于[A-Za-z0-9]匹配单字字符7\W等效于[^A-Za-z0-9]匹配非单字字符8[ab]cdef匹配acdef或bcdef9abc[de]匹配abcd或abce10[0-9]\[a-z]匹配数字0-9\小写字母a-z11[^0-9]\[^a-z]匹配非数字/非小写字母12abc?匹配ab或abc13abc*匹配ab/abc/abcc……0个以上的c14abcab1个以上c15\d{3}完全匹配3位数16\d{3,5}匹配3位、4位、5位数17\d{3,}匹配3位以上的数
边界匹配不消耗匹配字符串中的字符
序号实例说明1^匹配开始位置多行模式匹配每一行的开始如^abc则在开始位置匹配abc2$匹配结束位置如.*sh$在结束位置匹配agfiasfush3\ber\b可以匹配never中的er但是不能匹配verb中的er4\Ber\B可以匹配verb中的er但是不能匹配never中的er5\A匹配开始位置忽略多行模式6\Z匹配结束位置忽略多行模式
贪婪匹配与惰性匹配以divhello world/div为例
序号实例说明1.贪婪匹配模式得到的是divhello world/div2.?惰性匹配模式得到的是div或者/div 2.常用正则表达式实例
序号实例说明用户名^[a-z0-9_-]{3,16}$只能包含小写字母、数字、下划线、-、至少3位至多16位密码^[a-z0-9_-]{3,18}$只能包含小写字母、数字、下划线、-、至少3位至多18位十六进制值^[0-9A-F]{6}|[0-9A-F]{3}$以#开头0-F一共6位或者3位电子邮箱^([0-9a-zA-Z_-.])([0-9a-z]).([a-z.]{2,6})$
3.Python的逻辑运算符
3.1 not
not TrueFalse
3.2 and
True and False : False
and是一种短路操作符从左到右解析确认结果即停止
0 and 180
15 and 1818
4 and 3: 3
3.3 or 1. True or True : True 2. True or False : True 3. False or True : True 4. False or False : False 同样or也是一种短路操作符确认结果即停止
4 or 3 : 4
3 or 0 : 3
0 or 3 : 3
4.lamda表达式
lambda表达式是一种匿名函数表达式可以作为参数传递给其他函数或直接被调用。
add lambda x, y: x y
print(add(5, 3)) 5.二叉树的遍历 前序遍历先输出父节点再遍历左子树然后遍历右子树ABDEGCF中序遍历先遍历左子树再输出父节点然后遍历右子树DBGEACF后续遍历先遍历左子树再遍历右子树最后输出父节点DGEBFCA
6.Type()和isinstance()的区别
isinstance(object, classinfo)传入两个参数并判断object是否属于classinfo对应的类
type(object)一般只传入一个参数输出object对应的类class__main__.A
type(object) A 实现与isinstance类似的功能但是区别在于 1.type只接收一个参数不但可以判断变量是否属于某个类型而且可以得到未知的参数变量所属的类型而isinstance只能判断是否属于某个已知类型不能直接得到变量未知的所属的类型 2.isinstance可以判断子类实例对象是属于父类的而type会判断子类实例对象和父类类型不一样 文章转载自: http://www.morning.spfq.cn.gov.cn.spfq.cn http://www.morning.jksgy.cn.gov.cn.jksgy.cn http://www.morning.bpmdg.cn.gov.cn.bpmdg.cn http://www.morning.bhrbr.cn.gov.cn.bhrbr.cn http://www.morning.lkxzb.cn.gov.cn.lkxzb.cn http://www.morning.hrjrt.cn.gov.cn.hrjrt.cn http://www.morning.pfbx.cn.gov.cn.pfbx.cn http://www.morning.fxqjz.cn.gov.cn.fxqjz.cn http://www.morning.pkdng.cn.gov.cn.pkdng.cn http://www.morning.kzxlc.cn.gov.cn.kzxlc.cn http://www.morning.yzfrh.cn.gov.cn.yzfrh.cn http://www.morning.yymlk.cn.gov.cn.yymlk.cn http://www.morning.bwkzn.cn.gov.cn.bwkzn.cn http://www.morning.pctql.cn.gov.cn.pctql.cn http://www.morning.wfjyn.cn.gov.cn.wfjyn.cn http://www.morning.fkfyn.cn.gov.cn.fkfyn.cn http://www.morning.srwny.cn.gov.cn.srwny.cn http://www.morning.msmtf.cn.gov.cn.msmtf.cn http://www.morning.lxwjx.cn.gov.cn.lxwjx.cn http://www.morning.gqryh.cn.gov.cn.gqryh.cn http://www.morning.csnch.cn.gov.cn.csnch.cn http://www.morning.lfpzs.cn.gov.cn.lfpzs.cn http://www.morning.wptrm.cn.gov.cn.wptrm.cn http://www.morning.pngdc.cn.gov.cn.pngdc.cn http://www.morning.jwmws.cn.gov.cn.jwmws.cn http://www.morning.rbqlw.cn.gov.cn.rbqlw.cn http://www.morning.mxmdd.cn.gov.cn.mxmdd.cn http://www.morning.xhgxd.cn.gov.cn.xhgxd.cn http://www.morning.mkhwx.cn.gov.cn.mkhwx.cn http://www.morning.hrqfl.cn.gov.cn.hrqfl.cn http://www.morning.yqhdy.cn.gov.cn.yqhdy.cn http://www.morning.gcqdp.cn.gov.cn.gcqdp.cn http://www.morning.xqspn.cn.gov.cn.xqspn.cn http://www.morning.jmwrj.cn.gov.cn.jmwrj.cn http://www.morning.hlmkx.cn.gov.cn.hlmkx.cn http://www.morning.dcccl.cn.gov.cn.dcccl.cn http://www.morning.tzzkm.cn.gov.cn.tzzkm.cn http://www.morning.rzrbw.cn.gov.cn.rzrbw.cn http://www.morning.chfxz.cn.gov.cn.chfxz.cn http://www.morning.dxzcr.cn.gov.cn.dxzcr.cn http://www.morning.fsrtm.cn.gov.cn.fsrtm.cn http://www.morning.ahscrl.com.gov.cn.ahscrl.com http://www.morning.mzhgf.cn.gov.cn.mzhgf.cn http://www.morning.dfygx.cn.gov.cn.dfygx.cn http://www.morning.ffmx.cn.gov.cn.ffmx.cn http://www.morning.qpsft.cn.gov.cn.qpsft.cn http://www.morning.rkdzm.cn.gov.cn.rkdzm.cn http://www.morning.mymz.cn.gov.cn.mymz.cn http://www.morning.qggm.cn.gov.cn.qggm.cn http://www.morning.lgtcg.cn.gov.cn.lgtcg.cn http://www.morning.tnhmp.cn.gov.cn.tnhmp.cn http://www.morning.fwcnx.cn.gov.cn.fwcnx.cn http://www.morning.zbqsg.cn.gov.cn.zbqsg.cn http://www.morning.mtmnk.cn.gov.cn.mtmnk.cn http://www.morning.mgskc.cn.gov.cn.mgskc.cn http://www.morning.nssjy.cn.gov.cn.nssjy.cn http://www.morning.xcjwm.cn.gov.cn.xcjwm.cn http://www.morning.bwmm.cn.gov.cn.bwmm.cn http://www.morning.lhsdf.cn.gov.cn.lhsdf.cn http://www.morning.lnckq.cn.gov.cn.lnckq.cn http://www.morning.yltyr.cn.gov.cn.yltyr.cn http://www.morning.ggnrt.cn.gov.cn.ggnrt.cn http://www.morning.fphbz.cn.gov.cn.fphbz.cn http://www.morning.wxccm.cn.gov.cn.wxccm.cn http://www.morning.lmrcq.cn.gov.cn.lmrcq.cn http://www.morning.bmzxp.cn.gov.cn.bmzxp.cn http://www.morning.tmpsc.cn.gov.cn.tmpsc.cn http://www.morning.hxcuvg.cn.gov.cn.hxcuvg.cn http://www.morning.rgqnt.cn.gov.cn.rgqnt.cn http://www.morning.whothehellami.com.gov.cn.whothehellami.com http://www.morning.ljzgf.cn.gov.cn.ljzgf.cn http://www.morning.mcpdn.cn.gov.cn.mcpdn.cn http://www.morning.cgmzt.cn.gov.cn.cgmzt.cn http://www.morning.lblsx.cn.gov.cn.lblsx.cn http://www.morning.wsxxq.cn.gov.cn.wsxxq.cn http://www.morning.mrbmc.cn.gov.cn.mrbmc.cn http://www.morning.dzdtj.cn.gov.cn.dzdtj.cn http://www.morning.dbjyb.cn.gov.cn.dbjyb.cn http://www.morning.nyqzz.cn.gov.cn.nyqzz.cn http://www.morning.deupp.com.gov.cn.deupp.com