Django Book 翻译
菜单>:
TOC
返回
原文:
The next line of the function shows why we called ``int()`` on ``offset`` . On this line, we calculate the current time plus a time offset of ``offset`` hours, storing the result in ``dt`` . The ``datetime.timedelta`` function requires the ``hours`` parameter to be an integer.
翻译:
下一行显示了我们为什么调用 ``int()`` 来转换 ``offset`` 。 这一行我们要 计算当前时间加上这个时间差 ``offset`` 小时,保存结果到变量 ``dt`` 。 ``datetime.timedelta`` 函数的参数 ``hours`` 必须是整数类型。
备注:
译者: