zl程序教程

您现在的位置是:首页 >  Python

当前栏目

python类型注解

2023-02-26 09:47:16 时间

python可以使用类型注解来做提示,非强制,可以让代码更规整

文档:https://docs.python.org/3/library/typing.html

这里定义一个复杂的示例

  1. from typing import List,Dict,Set
  2. from typing import Callable
  3. async def call_url(url: str, chat_id_list: List[str], group_dict:Dict[str,str], key_set:Set[str], callback: Callable[[int, str], bool], timeout: int) -> str:
  4. pass