×

Python的基础语法知识点大全

消耗积分:1 | 格式:docx | 大小:0.04 MB | 2020-02-03

horizon999

分享资料个

本文档的主要内容详细介绍的是Python的基础语法知识点大全。

  1.数据类型

  and,elif,import,global,as,else,in,return,nonlocal,except,Try,Ture,False,break,finally,lambda,while,for,not,None,cotinue,from,or,def,if,pass,dell

  raise,yield,assert,class,is,with

  1.1数字类型(Number)

  布尔(bool):Ture

  整数(int):

  浮点数(double):1.23、3E-2

  复数(complex):1+2j

  使用complex()和complex(eval())可以排除用户非数字类型输输入

  1.2集合类型

  集合主要应用于数据去重(根据集合中元素的唯一性)

  集合元素:无序,唯一(不存在相同的元素)不可更改,不能是可变的数据类型

  非可变数据类型:整数,浮点数,复数,字符串类型,元组类型。

  集合用{}或set()建立,集合间元素用,分隔。(创建空集合时必须要用set())

  集合6个操作符(并、差、交、补):

  《1》 S|T #并,返回新集合,包括了ST中的所有元素。

  《2》 S-T #差,返回新集合,其中元素相当于从S中去除T中元素

  《3》 S&T #交,返回辛几何,其中元素即在S中也在T中

  《4》 S^T #补,返回新集合,其中元素为S独有和T独有

  《5》 S《T或S《=T 返回True/False ,判断S,T的子集关系

  《6》 S》T或S》=T 返回True/False,判断S,T的包含关系

  集合的四个增强操作符:

  S|=T S-=T S&=T S^=T

  集合类型方法:

  《1》S.add(x) #向集合中加x(x在集合中则不变)

  《2》S.discard(x) #移除x,若集合中无x也不报错

  《3》S.remove(x)#删除集合中x,若无x,产生KeyError的异常

  《4》S.clear()#移除集合中的所有元素

  《5》S.pop()#随机取出一个元素,若集合中无元素,则产生KeyError的异常

  (在产生异常的时候可以使用try.。.except来进行捕捉)

  《6》len(S)#返回集合S的元素个数

  《7》x in S或x not in S #判断元素是否在集合中,返回True/False

  《8》set(x)#类型转换,转换为集合类型

  1.3序列类型

  序列类型:具有先后关系的一组元素(基类类型(父类))

  子类为:字符串类型、元组类型、列表类型

  可看成一维向量,其中的元素类型可以不同

  S0,S1,S2,,,Sn-1

  通过下表访问特定的元素(正向递增(从0起)或者反向递减(从-1起))

  序列类型六个操作符:

  《1》x in S或《2》x not in S

  《3》S+T 《4》S*n或n*S

  《5》S[i] 《6》S[i:j]或S[i:j:k]

  五种函数/方法:

  len(S)、min(S)、max(S)、S.index(x)或S.index(x,i,j)、S.count(x)

  1.31字符串(String)

  定义:由一对单引号或双引号表示的有序序列。

  字符串序号:正向递增(0,1,,,2-n),反向递减(-n,-n-1,,,-1)

  字符串索引:《字符串》[M] 返回单个字符串

  字符串切片:《字符串》[M:N:K] 以K为步长进行切片,返回1个字符串字串

  字符串处理函数:

  eval(x) #评估函数,去掉参数最外层引号并执行余下语句(常与input()连用)

  Len(x) 返回字符串x的长度

  Str(x) 返回x对应的字符串形式(结果一般为加单引号)

  hex(x)和oct(x) 返回整数x的石榴进制\八进制

  字符串处理方法:方法特指《a》。《b》()风格中的《b》()

  str.lower()/str.upper() #返回字符串字串,全部大写/小写。

  str.split(sep=None) #返回一个列表,根据str中的sep划分。

  》》》 ‘a,b,c’.split(“,”)

  [‘a’, ‘b’, ‘c’]

  Str.count(sub)#返回sub在字符串中出现的次数

  str.replace(old,new)#返回新字符串,用新字符new替换字符串中的老字符old。

  str.center(width,[fillchar])#根据宽度居中,用[]内字符填充。

  str.strip(chars)#从字符串的左右两边去掉chars中的字符,直到出现非char中字符为止。

 

  str.jion(iter)#把str加在变量item中元素的中间。

  字符串格式化:《模板字符串》.format(逗号(,)分隔的参数)

  利用{参数序号:格式控制标记}

  :|填充|对齐|宽度|,(千分位分隔符)|。精度|类型

  |《》^|:对齐方式相对于填充内容

  类型:《1》b, 二进制

  《2》c,(整数,浮点数》=0)对应的Unicode编码格式,

  《3》d,十进制,

  《4》o,八进制,

  《5》X,十六进制大写X

  《6》x 十六进制小写x

声明:本文内容及配图由入驻作者撰写或者入驻合作网站授权转载。文章观点仅代表作者本人,不代表电子发烧友网立场。文章及其配图仅供工程师学习之用,如有内容侵权或者其他违规问题,请联系本站处理。 举报投诉

评论(0)
发评论

下载排行榜

全部0条评论

快来发表一下你的评论吧 !

'+ '

'+ '

'+ ''+ '
'+ ''+ ''+ '
'+ ''+ '' ); $.get('/article/vipdownload/aid/'+webid,function(data){ if(data.code ==5){ $(pop_this).attr('href',"/login/index.html"); return false } if(data.code == 2){ //跳转到VIP升级页面 window.location.href="//m.lene-v.com/vip/index?aid=" + webid return false } //是会员 if (data.code > 0) { $('body').append(htmlSetNormalDownload); var getWidth=$("#poplayer").width(); $("#poplayer").css("margin-left","-"+getWidth/2+"px"); $('#tips').html(data.msg) $('.download_confirm').click(function(){ $('#dialog').remove(); }) } else { var down_url = $('#vipdownload').attr('data-url'); isBindAnalysisForm(pop_this, down_url, 1) } }); }); //是否开通VIP $.get('/article/vipdownload/aid/'+webid,function(data){ if(data.code == 2 || data.code ==5){ //跳转到VIP升级页面 $('#vipdownload>span').text("开通VIP 免费下载") return false }else{ // 待续费 if(data.code == 3) { vipExpiredInfo.ifVipExpired = true vipExpiredInfo.vipExpiredDate = data.data.endoftime } $('#vipdownload .icon-vip-tips').remove() $('#vipdownload>span').text("VIP免积分下载") } }); }).on("click",".download_cancel",function(){ $('#dialog').remove(); }) var setWeixinShare={};//定义默认的微信分享信息,页面如果要自定义分享,直接更改此变量即可 if(window.navigator.userAgent.toLowerCase().match(/MicroMessenger/i) == 'micromessenger'){ var d={ title:'Python的基础语法知识点大全',//标题 desc:$('[name=description]').attr("content"), //描述 imgUrl:'https://'+location.host+'/static/images/ele-logo.png',// 分享图标,默认是logo link:'',//链接 type:'',// 分享类型,music、video或link,不填默认为link dataUrl:'',//如果type是music或video,则要提供数据链接,默认为空 success:'', // 用户确认分享后执行的回调函数 cancel:''// 用户取消分享后执行的回调函数 } setWeixinShare=$.extend(d,setWeixinShare); $.ajax({ url:"//www.lene-v.com/app/wechat/index.php?s=Home/ShareConfig/index", data:"share_url="+encodeURIComponent(location.href)+"&format=jsonp&domain=m", type:'get', dataType:'jsonp', success:function(res){ if(res.status!="successed"){ return false; } $.getScript('https://res.wx.qq.com/open/js/jweixin-1.0.0.js',function(result,status){ if(status!="success"){ return false; } var getWxCfg=res.data; wx.config({ //debug: true, // 开启调试模式,调用的所有api的返回值会在客户端alert出来,若要查看传入的参数,可以在pc端打开,参数信息会通过log打出,仅在pc端时才会打印。 appId:getWxCfg.appId, // 必填,公众号的唯一标识 timestamp:getWxCfg.timestamp, // 必填,生成签名的时间戳 nonceStr:getWxCfg.nonceStr, // 必填,生成签名的随机串 signature:getWxCfg.signature,// 必填,签名,见附录1 jsApiList:['onMenuShareTimeline','onMenuShareAppMessage','onMenuShareQQ','onMenuShareWeibo','onMenuShareQZone'] // 必填,需要使用的JS接口列表,所有JS接口列表见附录2 }); wx.ready(function(){ //获取“分享到朋友圈”按钮点击状态及自定义分享内容接口 wx.onMenuShareTimeline({ title: setWeixinShare.title, // 分享标题 link: setWeixinShare.link, // 分享链接 imgUrl: setWeixinShare.imgUrl, // 分享图标 success: function () { setWeixinShare.success; // 用户确认分享后执行的回调函数 }, cancel: function () { setWeixinShare.cancel; // 用户取消分享后执行的回调函数 } }); //获取“分享给朋友”按钮点击状态及自定义分享内容接口 wx.onMenuShareAppMessage({ title: setWeixinShare.title, // 分享标题 desc: setWeixinShare.desc, // 分享描述 link: setWeixinShare.link, // 分享链接 imgUrl: setWeixinShare.imgUrl, // 分享图标 type: setWeixinShare.type, // 分享类型,music、video或link,不填默认为link dataUrl: setWeixinShare.dataUrl, // 如果type是music或video,则要提供数据链接,默认为空 success: function () { setWeixinShare.success; // 用户确认分享后执行的回调函数 }, cancel: function () { setWeixinShare.cancel; // 用户取消分享后执行的回调函数 } }); //获取“分享到QQ”按钮点击状态及自定义分享内容接口 wx.onMenuShareQQ({ title: setWeixinShare.title, // 分享标题 desc: setWeixinShare.desc, // 分享描述 link: setWeixinShare.link, // 分享链接 imgUrl: setWeixinShare.imgUrl, // 分享图标 success: function () { setWeixinShare.success; // 用户确认分享后执行的回调函数 }, cancel: function () { setWeixinShare.cancel; // 用户取消分享后执行的回调函数 } }); //获取“分享到腾讯微博”按钮点击状态及自定义分享内容接口 wx.onMenuShareWeibo({ title: setWeixinShare.title, // 分享标题 desc: setWeixinShare.desc, // 分享描述 link: setWeixinShare.link, // 分享链接 imgUrl: setWeixinShare.imgUrl, // 分享图标 success: function () { setWeixinShare.success; // 用户确认分享后执行的回调函数 }, cancel: function () { setWeixinShare.cancel; // 用户取消分享后执行的回调函数 } }); //获取“分享到QQ空间”按钮点击状态及自定义分享内容接口 wx.onMenuShareQZone({ title: setWeixinShare.title, // 分享标题 desc: setWeixinShare.desc, // 分享描述 link: setWeixinShare.link, // 分享链接 imgUrl: setWeixinShare.imgUrl, // 分享图标 success: function () { setWeixinShare.success; // 用户确认分享后执行的回调函数 }, cancel: function () { setWeixinShare.cancel; // 用户取消分享后执行的回调函数 } }); }); }); } }); } function openX_ad(posterid, htmlid, width, height) { if ($(htmlid).length > 0) { var randomnumber = Math.random(); var now_url = encodeURIComponent(window.location.href); var ga = document.createElement('iframe'); ga.src = 'https://www1.elecfans.com/www/delivery/myafr.php?target=_blank&cb=' + randomnumber + '&zoneid=' + posterid+'&prefer='+now_url; ga.width = width; ga.height = height; ga.frameBorder = 0; ga.scrolling = 'no'; var s = $(htmlid).append(ga); } } openX_ad(828, '#berry-300', 300, 250);