久久久久久久av_日韩在线中文_看一级毛片视频_日本精品二区_成人深夜福利视频_武道仙尊动漫在线观看

    • <bdo id='hZ7H0'></bdo><ul id='hZ7H0'></ul>
  • <legend id='hZ7H0'><style id='hZ7H0'><dir id='hZ7H0'><q id='hZ7H0'></q></dir></style></legend>

    1. <i id='hZ7H0'><tr id='hZ7H0'><dt id='hZ7H0'><q id='hZ7H0'><span id='hZ7H0'><b id='hZ7H0'><form id='hZ7H0'><ins id='hZ7H0'></ins><ul id='hZ7H0'></ul><sub id='hZ7H0'></sub></form><legend id='hZ7H0'></legend><bdo id='hZ7H0'><pre id='hZ7H0'><center id='hZ7H0'></center></pre></bdo></b><th id='hZ7H0'></th></span></q></dt></tr></i><div class="qwawimqqmiuu" id='hZ7H0'><tfoot id='hZ7H0'></tfoot><dl id='hZ7H0'><fieldset id='hZ7H0'></fieldset></dl></div>

        <tfoot id='hZ7H0'></tfoot>

        <small id='hZ7H0'></small><noframes id='hZ7H0'>

      1. 將 datetime 轉換為 Unix 時間戳并將其轉換回 pytho

        Convert datetime to Unix timestamp and convert it back in python(將 datetime 轉換為 Unix 時間戳并將其轉換回 python)
        <legend id='QOCRE'><style id='QOCRE'><dir id='QOCRE'><q id='QOCRE'></q></dir></style></legend>

        <small id='QOCRE'></small><noframes id='QOCRE'>

        • <bdo id='QOCRE'></bdo><ul id='QOCRE'></ul>
            <tbody id='QOCRE'></tbody>

              <tfoot id='QOCRE'></tfoot>
              <i id='QOCRE'><tr id='QOCRE'><dt id='QOCRE'><q id='QOCRE'><span id='QOCRE'><b id='QOCRE'><form id='QOCRE'><ins id='QOCRE'></ins><ul id='QOCRE'></ul><sub id='QOCRE'></sub></form><legend id='QOCRE'></legend><bdo id='QOCRE'><pre id='QOCRE'><center id='QOCRE'></center></pre></bdo></b><th id='QOCRE'></th></span></q></dt></tr></i><div class="qwawimqqmiuu" id='QOCRE'><tfoot id='QOCRE'></tfoot><dl id='QOCRE'><fieldset id='QOCRE'></fieldset></dl></div>
                • 本文介紹了將 datetime 轉換為 Unix 時間戳并將其轉換回 python的處理方法,對大家解決問題具有一定的參考價值,需要的朋友們下面隨著小編來一起學習吧!

                  問題描述

                  我有 dt = datetime(2013,9,1,11),我想獲取這個 datetime 對象的 Unix 時間戳.

                  I have dt = datetime(2013,9,1,11), and I would like to get a Unix timestamp of this datetime object.

                  當我執行 (dt - datetime(1970,1,1)).total_seconds() 時,我得到了時間戳 1378033200.

                  When I do (dt - datetime(1970,1,1)).total_seconds() I got the timestamp 1378033200.

                  當使用 datetime.fromtimestamp 將其轉換回來時,我得到了 datetime.datetime(2013, 9, 1, 6, 0).

                  When converting it back using datetime.fromtimestamp I got datetime.datetime(2013, 9, 1, 6, 0).

                  時間不匹配.我在這里錯過了什么?

                  The hour doesn't match. What did I miss here?

                  推薦答案

                  你在這里錯過的是時區.

                  What you missed here is timezones.

                  假設您已經離開 UTC 五個小時,所以 2013-09-01T11:00:00 local 和 2013-09-01T06:00:00Z 是同一時間.

                  Presumably you've five hours off UTC, so 2013-09-01T11:00:00 local and 2013-09-01T06:00:00Z are the same time.

                  您需要閱讀 datetime 文檔的頂部,其中解釋時區和天真"和有意識"的對象.

                  You need to read the top of the datetime docs, which explain about timezones and "naive" and "aware" objects.

                  如果您最初的原始日期時間是 UTC,則恢復它的方法是使用 utcfromtimestamp 而不是 fromtimestamp.

                  If your original naive datetime was UTC, the way to recover it is to use utcfromtimestamp instead of fromtimestamp.

                  另一方面,如果您最初的原始日期時間是本地的,那么您一開始就不應該從中減去 UTC 時間戳;請改用 datetime.fromtimestamp(0).

                  On the other hand, if your original naive datetime was local, you shouldn't have subtracted a UTC timestamp from it in the first place; use datetime.fromtimestamp(0) instead.

                  或者,如果您有一個感知日期時間對象,您需要在雙方都使用本地(感知)紀元,或者顯式轉換為 UTC.

                  Or, if you had an aware datetime object, you need to either use a local (aware) epoch on both sides, or explicitly convert to and from UTC.

                  如果您擁有或可以升級到 Python 3.3 或更高版本,則只需使用 timestamp 方法,而不是試圖自己弄清楚如何去做.即使你不這樣做,你也可以考慮借用它的源代碼.

                  If you have, or can upgrade to, Python 3.3 or later, you can avoid all of these problems by just using the timestamp method instead of trying to figure out how to do it yourself. And even if you don't, you may want to consider borrowing its source code.

                  (如果您可以等待 Python 3.4,那么看起來 PEP 341 可能會使其進入最終版本,這意味著 JF Sebastian 和我在評論中討論的所有內容都應該僅使用 stdlib 即可實現,并且在 Unix 和 Windows 上以相同的方式工作.)

                  (And if you can wait for Python 3.4, it looks like PEP 341 is likely to make it into the final release, which means all of the stuff J.F. Sebastian and I were talking about in the comments should be doable with just the stdlib, and working the same way on both Unix and Windows.)

                  這篇關于將 datetime 轉換為 Unix 時間戳并將其轉換回 python的文章就介紹到這了,希望我們推薦的答案對大家有所幫助,也希望大家多多支持html5模板網!

                  【網站聲明】本站部分內容來源于互聯網,旨在幫助大家更快的解決問題,如果有圖片或者內容侵犯了您的權益,請聯系我們刪除處理,感謝您的支持!

                  相關文檔推薦

                  python: Two modules and classes with the same name under different packages(python:不同包下同名的兩個模塊和類)
                  Configuring Python to use additional locations for site-packages(配置 Python 以使用站點包的其他位置)
                  How to structure python packages without repeating top level name for import(如何在不重復導入頂級名稱的情況下構造python包)
                  Install python packages on OpenShift(在 OpenShift 上安裝 python 包)
                  How to refresh sys.path?(如何刷新 sys.path?)
                  Distribute a Python package with a compiled dynamic shared library(分發帶有已編譯動態共享庫的 Python 包)

                          <tfoot id='kqTsm'></tfoot>
                          <legend id='kqTsm'><style id='kqTsm'><dir id='kqTsm'><q id='kqTsm'></q></dir></style></legend>
                            <bdo id='kqTsm'></bdo><ul id='kqTsm'></ul>

                          • <small id='kqTsm'></small><noframes id='kqTsm'>

                              <tbody id='kqTsm'></tbody>

                            <i id='kqTsm'><tr id='kqTsm'><dt id='kqTsm'><q id='kqTsm'><span id='kqTsm'><b id='kqTsm'><form id='kqTsm'><ins id='kqTsm'></ins><ul id='kqTsm'></ul><sub id='kqTsm'></sub></form><legend id='kqTsm'></legend><bdo id='kqTsm'><pre id='kqTsm'><center id='kqTsm'></center></pre></bdo></b><th id='kqTsm'></th></span></q></dt></tr></i><div class="qwawimqqmiuu" id='kqTsm'><tfoot id='kqTsm'></tfoot><dl id='kqTsm'><fieldset id='kqTsm'></fieldset></dl></div>
                          • 主站蜘蛛池模板: 国产精品久久久久久久久久 | 91国在线观看 | 男人电影天堂 | 国产精品资源在线观看 | 欧美亚洲国产日韩 | 欧美一区二区在线 | 一区二区三区欧美在线观看 | 91麻豆产精品久久久久久 | 日韩视频免费看 | www.成人在线视频 | 久久国产成人 | 亚洲一区二区在线视频 | 97久久精品午夜一区二区 | 久久99国产精品 | 国产精品久久久久久久7电影 | 毛片黄| 一区二区三区在线播放视频 | 成人免费一区二区三区牛牛 | 久草网址| 久久国产日韩 | 一区二区三区中文字幕 | 国产精品欧美一区二区三区 | 日韩美香港a一级毛片免费 国产综合av | 亚洲国产视频一区 | 嫩草影院网址 | 97超碰在线免费 | 日韩欧美不卡 | 黄网站在线观看 | 亚洲国产精品一区二区久久 | 亚洲成人在线网 | 久久久免费在线观看 | 色婷婷av久久久久久久 | 日韩精品在线观看视频 | 日韩一区和二区 | 午夜精品久久久久久久星辰影院 | 成人三级视频 | 激情六月丁香婷婷 | 视频在线一区二区 | 超碰综合| 精品视频一区二区三区在线观看 | 欧洲色综合 |