gpt4 book ai didi

datetime - 注释日期时间对象的推荐方法是什么?

转载 作者:行者123 更新时间:2023-12-03 17:00:43 25 4
gpt4 key购买 nike

假设我有一个函数,它需要两个日期时间并以秒为单位返回差值:

import datetime


def diff(d1: datetime.datetime, d2: datetime.datetime) -> float:
return (d2 - d1).total_seconds()


if __name__ == '__main__':
d1 = datetime.datetime.now()
d2 = datetime.datetime.now(datetime.timezone.utc)
print(diff(d1, d2))

mypy 告诉我这很好:
$ python3.8 -m mypy test.py
Success: no issues found in 1 source file

但我得到一个类型错误:
TypeError: can't subtract offset-naive and offset-aware datetimes

错误消息中明确说明了原因。类型注释不够好。

我想这是一个很常见的情况。是否有推荐的方法来注释时区感知与不感知日期时间对象,从而正确使用 mypy?

最佳答案

一种可能的解决方案是使用 TypeVar、NewType 和 cast:

import datetime
from typing import NewType, TypeVar, cast

NDT = NewType("NDT", datetime.datetime) # non-aware datetime
ADT = NewType("ADT", datetime.datetime) # timezone aware datetime
DatetimeLike = TypeVar("DatetimeLike", NDT, ADT)


def diff(d1: DatetimeLike, d2: DatetimeLike) -> float:
return (d2 - d1).total_seconds()


if __name__ == "__main__":
d1: NDT = cast(NDT, datetime.datetime.now())
d2: ADT = cast(ADT, datetime.datetime.now(datetime.timezone.utc))

# Fails with:
# error: Value of type variable "DatetimeLike" of "diff" cannot be "datetime"
# You have to use either NDT or ADT
print(diff(d1, d2))

我不喜欢你必须使用的这个解决方案 cast并且错误信息不像以前那么清楚。

关于datetime - 注释日期时间对象的推荐方法是什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61205416/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com