- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
utcfromtimestamp()
的相反函数是什么?
timestamp()
显然没有考虑时区,如下例所示:
import pandas as pd
import datetime
start = pd.datetime(2000, 1, 1, 0, 0, 0)
asFloat = start.timestamp()
startDifferent = datetime.datetime.utcfromtimestamp(asFloat)
startDifferent
Out[8]: datetime.datetime(1999, 12, 31, 23, 0)
最佳答案
utctimetuple
--> calendar.timegm
--> utcfromtimestamp
形成一个往返:
import calendar
import datetime as DT
start = DT.datetime(2000, 1, 1, 0, 0, 0)
utc_tuple = start.utctimetuple()
utc_timestamp = calendar.timegm(utc_tuple)
startDifferent = DT.datetime.utcfromtimestamp(utc_timestamp)
print(startDifferent)
# 2000-01-01 00:00:00
timestamp
--> fromtimestamp
也是往返:
asFloat = start.timestamp()
startDifferent = DT.datetime.fromtimestamp(asFloat)
print(startDifferent)
# 2000-01-01 00:00:00
没有 utc
等同于 timestamp
直接从 datetime.datetime
到时间戳。最接近的等效项是 calendar.timegm(date.utctimetuple())
。
大致描述了方法之间的关系:
o------------o
| | DT.datetime.utcfromtimestamp (*)
| |<-----------------------------------o
| | |
| | DT.datetime.fromtimestamp |
| datetime |<-------------------------------o |
| | | |
| | .timestamp | |
| |----------------------------o | |
| | | | |
o------------o | | |
| ^ | | |
.timetuple | | | | |
.utctimetuple (*) | | DT.datetime(*tup[:6]) | | |
v | v | |
o------------o o------------o
| |-- calendar.timegm (*) -->| |
| | | |
| |---------- time.mktime -->| |
| timetuple | | timestamp |
| |<-- time.localtime -------| |
| | | |
| |<-- time.gmtime (*)-------| |
o------------o o------------o
(*) 将其输入解释为 UTC 并返回应解释为 UTC 的输出。
关于python - utcfromtimestamp 的相反函数?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54935647/
我需要知道这个 js 代码有什么错误,我需要点击展开 div 并在第二次点击时 div 回到原来的尺寸这是javascript: function myBurger() { document
id 内置函数是否有反向或反向?我正在考虑使用它来编码和解码字符串,而不会像 PyCrypto 库那样花费太多时间或大量开销。我的需求非常简单,所以我不想使用 PyCrypto 进行简单的编码和解码。
如何将urllib.urlencode处理后的数据转成dict?urllib.urldecode 不存在。 最佳答案 作为 the docs对于 urlencode 来说, The urlparse
我正在使用 Gekko 为一组 react 动力学选择 A 最优实验。目标函数是最小化 trace(inv(Z'Z)),其中 Z 是通过围绕其参数线性化 ODE 计算的尺度灵敏度矩阵。如您所见,目标函
所以我今天刚尝试使用 LESS。根据官方网站上提供的示例,我已经成功编写了如下所示的 CSS 脚本。但是有一行不能像我想要的那样工作,我想将颜色类型变量转换为字符串(用单引号引起来)。 我有颜色变量,
给定以下形式: 我可以使用 $.param( .. ) 构造来序列化表单: $.param( $('form input') ) => foo=bar&hello=hello+
Python 允许使用 [2,36] 范围内的任何基数将字符串转换为整数: int(string,base) 我正在寻找一个优雅的反函数,它接受一个整数和一个基数并返回一个字符串。 例如: >>> s
我是一名优秀的程序员,十分优秀!