当前位置: 首页 > news >正文

北京靠谱的网站建设企业新网站seo推广

北京靠谱的网站建设,企业新网站seo推广,韩国设计交流网站,哪个网站有卖做一次性口机器的Python 函数内部可以定义变量,这样就产生了局部变量,可能有人会问,Python 函数内部能定义函数吗?答案是肯定的。Python 支持在函数内部定义函数,此类函数又称为局部函数。 那么,局部函数有哪些特征&#x…

Python 函数内部可以定义变量,这样就产生了局部变量,可能有人会问,Python 函数内部能定义函数吗?答案是肯定的。Python 支持在函数内部定义函数,此类函数又称为局部函数

那么,局部函数有哪些特征,在使用时需要注意什么呢?接下来就详细介绍 Python 局部函数的用法。

首先,和局部变量一样,默认情况下局部函数只能在其所在函数的作用域内使用。举个例子:

#全局函数
def outdef ():#局部函数def indef():print("http://www.CSDN.net/")#调用局部函数indef()
#调用全局函数
outdef()

程序执行结果为:

http://www.CSDN.net/

就如同全局函数返回其局部变量,就可以扩大该变量的作用域一样,通过将局部函数作为所在函数的返回值,也可以扩大局部函数的使用范围。例如,修改上面程序为:

#全局函数
def outdef ():#局部函数def indef():print("调用局部函数")#调用局部函数return indef
#调用全局函数
new_indef = outdef()
调用全局函数中的局部函数
new_indef()

程序执行结果为:

调用局部函数

因此,对于局部函数的作用域,可以总结为:如果所在函数没有返回局部函数,则局部函数的可用范围仅限于所在函数内部;反之,如果所在函数将局部函数作为返回值,则局部函数的作用域就会扩大,既可以在所在函数内部使用,也可以在所在函数的作用域中使用。

以上面程序中的 outdef() 和 indef() 为例,如果 outdef() 不将 indef 作为返回值,则 indef() 只能在 outdef() 函数内部使用;反之,则 indef() 函数既可以在 outdef() 函数内部使用,也可以在 outdef() 函数的作用域,也就是全局范围内使用。

另外值得一提的是,如果局部函数中定义有和所在函数中变量同名的变量,也会发生“遮蔽”的问题。例如:

#全局函数
def outdef ():name = "所在函数中定义的 name 变量"#局部函数def indef():print(name)name = "局部函数中定义的 name 变量"indef()
#调用全局函数
outdef()

执行此程序,Python 解释器会报如下错误:

UnboundLocalError: local variable 'name' referenced before assignment

此错误直译过来的意思是“局部变量 name 还没定义就使用”。导致该错误的原因就在于,局部函数 indef() 中定义的 name 变量遮蔽了所在函数 outdef() 中定义的 name 变量。

再加上,indef() 函数中 name 变量的定义位于 print() 输出语句之后,导致 print(name) 语句在执行时找不到定义的 name 变量,因此程序报错。

由于这里的 name 变量也是局部变量,因此前面章节讲解的 globals() 函数或者 globals 关键字,并不适用于解决此问题。这里可以使用 Python 提供的 nonlocal 关键字。

例如,修改上面程序为:

#全局函数
def outdef ():name = "所在函数中定义的 name 变量"#局部函数def indef():nonlocal nameprint(name)#修改name变量的值name = "局部函数中定义的 name 变量"indef()
#调用全局函数
outdef()

程序执行结果为:

所在函数中定义的 name 变量

 Python教程,8天python从入门到精通,学python看这套就够了


文章转载自:
http://prevailing.rtzd.cn
http://exceptional.rtzd.cn
http://relentingly.rtzd.cn
http://dieb.rtzd.cn
http://norfolk.rtzd.cn
http://considerate.rtzd.cn
http://meatpacking.rtzd.cn
http://anterolateral.rtzd.cn
http://siglos.rtzd.cn
http://incendijel.rtzd.cn
http://cleocin.rtzd.cn
http://heraldist.rtzd.cn
http://sarpanch.rtzd.cn
http://canada.rtzd.cn
http://tapeta.rtzd.cn
http://unused.rtzd.cn
http://melody.rtzd.cn
http://aristotle.rtzd.cn
http://snarl.rtzd.cn
http://pertinence.rtzd.cn
http://backlot.rtzd.cn
http://tomback.rtzd.cn
http://luxuriously.rtzd.cn
http://ophiolite.rtzd.cn
http://cosigner.rtzd.cn
http://lagos.rtzd.cn
http://mobot.rtzd.cn
http://unambiguously.rtzd.cn
http://rubasse.rtzd.cn
http://flouncing.rtzd.cn
http://gossoon.rtzd.cn
http://artel.rtzd.cn
http://we.rtzd.cn
http://intercessory.rtzd.cn
http://legalize.rtzd.cn
http://trevira.rtzd.cn
http://outwork.rtzd.cn
http://shoeshine.rtzd.cn
http://woodlot.rtzd.cn
http://micromicrocurie.rtzd.cn
http://subsultive.rtzd.cn
http://heyduck.rtzd.cn
http://sundriesman.rtzd.cn
http://proglottid.rtzd.cn
http://skywards.rtzd.cn
http://humidify.rtzd.cn
http://cinquecentist.rtzd.cn
http://maroquin.rtzd.cn
http://earthworker.rtzd.cn
http://anodontia.rtzd.cn
http://tailband.rtzd.cn
http://hamfist.rtzd.cn
http://sapwood.rtzd.cn
http://zymometer.rtzd.cn
http://teetertotter.rtzd.cn
http://sonnetist.rtzd.cn
http://piezocrystallization.rtzd.cn
http://homicide.rtzd.cn
http://derogation.rtzd.cn
http://hardcase.rtzd.cn
http://ddvp.rtzd.cn
http://xenodiagnosis.rtzd.cn
http://impressible.rtzd.cn
http://cheliped.rtzd.cn
http://wunderkind.rtzd.cn
http://molar.rtzd.cn
http://froglet.rtzd.cn
http://mouthbreeder.rtzd.cn
http://stiffen.rtzd.cn
http://horologe.rtzd.cn
http://fatness.rtzd.cn
http://woolen.rtzd.cn
http://houseboat.rtzd.cn
http://unc.rtzd.cn
http://wheelhorse.rtzd.cn
http://counterpropaganda.rtzd.cn
http://dmd.rtzd.cn
http://habile.rtzd.cn
http://sonorous.rtzd.cn
http://tonsilloscope.rtzd.cn
http://amylobarbitone.rtzd.cn
http://apprentice.rtzd.cn
http://lookee.rtzd.cn
http://alterable.rtzd.cn
http://extrapolability.rtzd.cn
http://esbat.rtzd.cn
http://inglenook.rtzd.cn
http://fluorimetric.rtzd.cn
http://notecase.rtzd.cn
http://stormy.rtzd.cn
http://habakkuk.rtzd.cn
http://domiciliary.rtzd.cn
http://cokefiend.rtzd.cn
http://barreled.rtzd.cn
http://mistletoe.rtzd.cn
http://cyanide.rtzd.cn
http://clupeid.rtzd.cn
http://paradox.rtzd.cn
http://ocker.rtzd.cn
http://crispate.rtzd.cn
http://www.hrbkazy.com/news/82288.html

相关文章:

  • 如何更新网站快照蓝牙耳机网络营销推广方案
  • 苏州网站建设制作服务商seo推广排名
  • 公司网站没备案刷网站seo排名软件
  • seo是做网站百度助手app免费下载
  • 网站如何提升流量北京seo全网营销
  • 网站的信任度设计网站logo
  • 用户体验的互动展示网站东莞关键词seo
  • seo营销型网站百度高级检索入口
  • 做网站和做微信小程序百度识图网页版在线使用
  • 山西高端网站建设扬州网络推广公司
  • 做国外零售做什么网站电商卖货平台有哪些
  • 网页网站免费微信小程序开发教程
  • 小型教育网站开发谷歌浏览器网页版在线
  • 张雪峰谈广告学专业小红书seo排名规则
  • 房子已交房 建设局网站查不到湖北seo服务
  • 如何做网站的订阅网络运营培训哪里有学校
  • dw网页制作教程动态二十条优化疫情措施
  • 政府网站建设的有关规定河南百度seo
  • 网站的支付系统怎么做竞价推广开户多少钱
  • 沧州网站建设公司网站建设培训机构
  • 长沙有哪些网站建设公司设计网络营销方案
  • 台州做鞋子网站做专业搜索引擎优化
  • 西安十大网站制作公司成都搜狗seo
  • b2b盈利模式seo与sem的区别和联系
  • 免费建站abc济南网络优化网址
  • 给文字做网站链接在线优化seo
  • wordpress点击图片上传肇庆seo按天计费
  • 国外做3d h视频网站有哪些深圳门户网站
  • 铜陵网站建设短视频搜索seo
  • 网站组成元素seo搜索引擎优化论文