34

在某些(主要是函数式)语言中,您可以执行以下操作:

type row = list(datum)

或者

type row = [datum]

这样我们就可以构建这样的东西:

type row = [datum]
type table = [row]
type database = [table]

有没有办法在 Python 中做到这一点?你可以使用类来做,但是 Python 有很多功能方面,所以我想知道是否可以用更简单的方法来做。

4

3 回答 3

94

从 Python 3.5 开始,您可以使用类型模块。

引用文档,通过将类型分配给别名来定义类型别名:

Vector = List[float]

要了解有关 Python 中强制类型的更多信息,您可能需要熟悉 PEP:PEP483PEP484

Python 在历史上使用鸭子类型而不是强类型,并且在 3.5 版本之前没有内置强制类型的方法。

于 2015-10-09T18:50:29.393 回答
11

@Lukasz 接受的答案是我们大多数时候需要的。但是对于您需要别名本身是不同类型的情况,您可能需要typing.NewType按照此处记录的方式使用:https ://docs.python.org/3/library/typing.html#newtype

from typing import List, NewType

Vector = NewType("Vector", List[float])

一个特定的用例是,如果您正在使用该injector库并且您需要注入别名的新类型而不是原始类型。

from typing import NewType

from injector import inject, Injector, Module, provider

AliasRawType = str
AliasNewType = NewType("AliasNewType", str)


class MyModule(Module):
    @provider
    def provide_raw_type(self) -> str:
        return "This is the raw type"

    @provider
    def provide_alias_raw_type(self) -> AliasRawType:
        return AliasRawType("This is the AliasRawType")

    @provider
    def provide_alias_new_type(self) -> AliasNewType:
        return AliasNewType("This is the AliasNewType")


class Test1:
    @inject
    def __init__(self, raw_type: str):  # Would be injected with MyModule.provide_raw_type() which is str. Expected.
        self.data = raw_type


class Test2:
    @inject
    def __init__(self, alias_raw_type: AliasRawType):  # Would be injected with MyModule.provide_raw_type() which is str and not MyModule.provide_alias_raw_type() which is just a direct alias to str. Unexpected.
        self.data = alias_raw_type


class Test3:
    @inject
    def __init__(self, alias_new_type: AliasNewType): # Would be injected with MyModule.provide_alias_new_type() which is a distinct alias to str. Expected.
        self.data = alias_new_type


injector = Injector([MyModule()])
print(injector.get(Test1).data, "-> Test1 injected with str")
print(injector.get(Test2).data, "-> Test2 injected with AliasRawType")
print(injector.get(Test3).data, "-> Test3 injected with AliasNewType")

输出:

This is the raw type -> Test1 injected with str
This is the raw type -> Test2 injected with AliasRawType
This is the AliasNewType -> Test3 injected with AliasNewType

因此,要在使用库时正确注入正确的提供程序injector,您将需要NewType别名。

于 2021-05-11T13:25:46.907 回答
2

从 Python 3.10 开始,模块中提供了TypeAlias注释typing

它用于明确指示已完成分配以生成类型别名。例如:

Point: TypeAlias = Tuple[float, float]
Triangle: TypeAlias = Tuple[Point, Point, Point]

您可以阅读更多关于介绍它的PEP 613TypeAlias上的注释。

于 2022-01-20T08:57:18.260 回答