python中的def是什么意思啊_在Python函数定义中-是什么意思?

更新时间:2023-07-13 10:21:09 阅读: 评论:0

python中的def是什么意思啊_在Python函数定义中-是什么意
思?注册邮箱
这些是PEP 3107中介绍的函数注释。具体来说,->标记返回函数注释。
⽰例:>>> def kinetic_energy(m:'in KG', v:'in M/S')->'Joules':
措怎么组词... return 1/2*m*v**2
...
睡觉鼻塞怎么办>>> kinetic_energy.__annotations__
夏季田径运动会{'return': 'Joules', 'v': 'in M/S', 'm': 'in KG'}
注释是字典,因此您可以执⾏以下操作:>>> '{:,} {}'.format(kinetic_energy(20,3000),
kinetic_energy.__annotations__['return'])
'90,000,000.0 Joules'
周三英语
您还可以使⽤python数据结构,⽽不仅仅是字符串:>>> rd={'type':float,'units':'Joules','docstring':'Given mass and velocity returns kinetic energy in Joules'}
>>> def f()->rd:
... pass
>>> f.__annotations__['return']['type']
>>> f.__annotations__['return']['units']
按企业
'Joules'
>>> f.__annotations__['return']['docstring']
'Given mass and velocity returns kinetic energy in Joules'
或者,可以使⽤函数属性验证调⽤的值:def validate(func, locals):
for var, test in func.__annotations__.items():
value = locals[var]
try:
pr=test.__name__+': '+test.__docstring__
except AttributeError:
pr=test.__name__
msg = '{}=={}; Test: {}'.format(var, value, pr)
地瓜糕asrt test(value), msg
def between(lo, hi):
def _between(x):
漫长的等待return lo <= x <= hi
_between.__docstring__='must be between {} and {}'.format(lo,hi)
return _between
def f(x: between(3,10), y:lambda _y: isinstance(_y,int)):
validate(f, locals())
print(x,y)
印刷品>>> f(2,2)
AsrtionError: x==2; Test: _between: must be between 3 and 10 >>> f(3,2.1)
AsrtionError: y==2.1; Test:

本文发布于:2023-07-13 10:21:09,感谢您对本站的认可!

本文链接:https://www.wtabcd.cn/fanwen/fan/82/1094152.html

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。

标签:函数   注释   邮箱   鼻塞   等待   注册
相关文章
留言与评论(共有 0 条评论)
   
验证码:
推荐文章
排行榜
Copyright ©2019-2022 Comsenz Inc.Powered by © 专利检索| 网站地图