TypeAlias

类型别名TypeAlias

```python from collections.abc import Iterable from typing import TypeAlias FromTo = tuple[str, str] # 3.10之前 FromTo: TypeAlias = tuple[str, str] # 3. ......
别名 TypeAlias 类型
共1篇  :1/1页 首页上一页1下一页尾页