Python 函数方法(参数指定类型)
1, 指定函数方法得参数,"必须为指定类型"(写法:name:int),-> str(这种是建议你的返回值为该类型,但是你返回不是该类型也不会报错)
# name指定为str类型,返回值为str类型
def greeting(name: str) -> str:
return 'hello:' + name
# names指定为**类型,返回值为dict类型
def greedict(**names) -> dict:
print("Annotations:", greedict.__annotations__)
return names
if __name__ == '__main__':
print(greeting("张三"))
print(greedict(张三=1, 李四=2))
结果:
hello:张三
Annotations: {'return': <class 'dict'>}
{'张三': 1, '李四': 2}