python怎么设置函数注解 Python函数注解

主机教程 建站分享 2年前 (2022-11-14) 248次浏览

文章摘要:python怎么设置函数注解 Python函数注解

在python中设置函数注解,具体方法如下: def clip(text:str, max_len:'int […]

在python中设置函数注解,具体方法如下:

def clip(text:str, max_len:'int > 0'=80) ->str: # 有注解的函数声明

end = None

if len(text) > max_len:

space_before = text.find(' ', 0, max_len)

if space_before >= 0:

end = space_before

else:

space_after = text.find(' ', max_len)

if space_after >= 0:

end = space_after

if end is None: # 没找到空格

end = len(text)

return text[:end].strip()


声明:
若非注明,本站文章源于互联网收集整理和网友分享发布,如有侵权,请联系站长处理。
文章名称:python怎么设置函数注解 Python函数注解
文章链接:http://www.7966.org/post/14136.html
转载请注明出处

喜欢 (0)