找到正确的Python类型提示,例如内置函数map()的签名

问题描述 投票:0回答:1

描述

在 Python 3.5 或更高版本中,支持类型提示(有关更多信息,请参阅此处)。然而,常见类型的正确用法并没有很好的记录。

例如,从官方网站,我可以收集以下(正确的)用法:

字符串

# The function signature of greeting is: Callable[[str], str]
def greeting(name: str) -> str:
    return 'Hello ' + name

整数

# The function signature of add is: Callable[[int, int], int]
def add(a: int, b: int) -> int:
    return a + b

浮点数

# The default value of x is 1.0
def reciprocal(x: float = 1.0) -> float:
    from math import nan
    if x == 0:
        return nan
    return 1 / x

列表

from typing import List, TypeVar

T = TypeVar('T')

def repeat(x: T, n: int) -> List[T]:
    return [x] * n

元组

from typing import Tuple, TypeVar

T = TypeVar('T')

def double(x: T) -> Tuple[T, T]:
    return (x, x)

问题

我的问题是:

1。

map
的返回类型是什么?

from typing import Iterable

# Is this correct?
x: Iterable[float] = map(int.__float__, [1, 2, 3])

我不确定这是否是上面

x
的正确类型提示。

2。从更广泛的意义上讲,

map
的“函数签名”是什么?

from typing import Callable, Iterable, TypeVar

T = TypeVar('T')
U = TypeVar('U')

# In the above usage, the type of the map function seems to be:
Function1 = Callable[[T], U]
typeOfMap = Callable[[Function1, Iterable[T]], Iterable[U]]

# Or in one line:
typeOfMap = Callable[[Callable[[T], U], Iterable[T]], Iterable[U]]

但事实上,map函数可以接受多个iterables。它被记录为:

map(function, iterable, ...)

可以这样使用:

# The result is: [['A'], ['B', 'B'], ['C', 'C', 'C']]
result = list(map(repeat, ['A', 'B', 'C'], [1, 2, 3]))

T1 = TypeVar('T1')
T2 = TypeVar('T2')
R = TypeVar('R')

# So, the type of map function in this usage seems to be:
Function2 = Callable[[T1, T2], R]
typeOfMap = Callable[[Function2, Iterable[T1], Iterable[T2]], Iterable[R]]

总的来说,我猜应该是像下面这样,但这不是正确的写法:

FunctionN = Callable[[T1, T2, ..., Tn], R]
typeOfMap = Callable[[FunctionN, Iterable[T1], Iterable[T2], ..., Iterable[Tn]], Iterable[R]]

那么,正确的写法是什么呢?

3.一般来说,我在哪里可以找到Python函数/方法的正确类型提示,包括内置的、核心库中的?

我需要它们主要是为了学习目的。

4。有没有办法输出编译器/解释器计算出的类型推断结果,如Haskell或Erlang?

我知道 Haskell 和 Erlang 是函数式编程语言,变量是不可变的,所以实现这一点会容易得多,但以防万一 Python 也有类似的功能,我想知道。

5。有没有办法检查我的类型提示是否正确?

或者至少让它在编译时/运行时向我显示一些警告/错误,以便我知道出了问题。

参考文献

在撰写本文时,最新的稳定版本是 3.8.0。

python python-typing built-in
1个回答
7
投票

1。

map
的返回类型是什么?

map
的返回值 当前输入为
Iterator[T]
。由于迭代器是可迭代的,因此您的
x: Iterable[float] = map(int.__float__, [1, 2, 3])
注释是有效的。 (另外,只需写
map(float, [1, 2, 3])
。)

2。从更广泛的意义上讲,map 的“函数签名”是什么?

目前无法表示,这就是为什么 typeshed 具有最多 6 个泛型参数的重载。 (一个相关问题

3.一般来说,我在哪里可以找到Python函数/方法的正确类型提示,包括内置的、核心库中的?

我需要它们主要是为了学习目的。

Python 的 typeshed 存储库。请注意,出于学习目的(练习),您通常应该推断类型或使用任何有意义的类型,而不是使用最精确的类型。

您还可以使用

reveal_type
– 见下文。

4。有没有办法输出编译器/解释器计算出的类型推断结果,如Haskell或Erlang?

我知道 Haskell 和 Erlang 是函数式编程语言,变量是不可变的,所以实现这一点会容易得多,但以防万一 Python 也有类似的功能,我想知道。

这取决于您的类型检查器。 Mypy 有

reveal_type

x = map(float, [1, 2, 3])
reveal_type(x)  # note: Revealed type is 'typing.Iterator[builtins.float*]'

5。有没有办法检查我的类型提示是否正确?

或者至少让它在编译时/运行时向我显示一些警告/错误,以便我知道出了问题。

静态地讲,这就是类型检查。 (例如,如果您的

x
提示错误,Mypy 会告诉您。)它无法捕获所有内容,尤其是在像 Python 这样动态的语言中,但这就是编程的本质。

有一些项目基于类型注释进行某种程度的运行时断言,但我没有使用过或真正会打扰。

© www.soinside.com 2019 - 2024. All rights reserved.