首页 > 编程语言 > 详细

Python——补充函数知识点(类型提示:Type hinting)

时间:2020-03-27 21:03:05      阅读:74      评论:0      收藏:0      [点我收藏+]

类型提示:Type hinting(最低python版本为3.5)

def register(name:str,age:int,hobbies:tuple):
    print(name)
    print(age)
    print(hobbies)
    return 200
register(‘egon‘,18,[‘play‘,‘eat‘,‘sleep‘])

# 类型提示
def register(name: str, age: int, hobbies: tuple)-> int:
    print(name)
    print(age)
    print(hobbies)
    return 200
res = register(‘egon‘,18,(‘play‘,‘eat‘,‘sleep‘))

print(register.__annotations__) # 查看自己定义的全部提示

Python——补充函数知识点(类型提示:Type hinting)

原文:https://www.cnblogs.com/guanxiying/p/12584021.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!