def demo(name: str, age: 'int > 0'=20)->str: # ->str 表示该函数的返回值是str类型的
print(name, type(name))
print(age, type(age))
return "hello world"
demo(1, 2) # 这里的参数1会显示黄色, 但是可以运行不会报错
python定义函数时,指定要传入参数的数据类型 https://blog.csdn.net/qq_42327755/article/details/87196150
类型提示支持 https://docs.python.org/zh-cn/3/library/typing.html#module-typing