Epoche in Python

20161209

Der Befehl date lautet Gnu coreutils [^ 1]. [^ 1]: Für das BSD-Datum "Datum -r 1481122800" +% Y-% M-% d% T "", "Datum -j -f"% Y-% m-% d% T "" 2016-12 -08 00:00:00 "" +% s ""

date => epoch

$ date "+%s" -d"2016-12-08 00:00:00"
1481122800
$ perl -MTime::Local -le 'print timelocal(0,0,0,8,12 -1,2016)'
1481122800
$ python -c 'import datetime ; print (datetime.datetime(2016,12,8,0,0,0).strftime("%s"))'
1481122800

Es ist in Ordnung, weil über die Behandlung des Jahres der "Zeitlokalisierung" gesprochen wurde.

epoch => date

$ date "+%Y-%m-%d %T" -d@1481122800
2016-12-08 00:00:00
$ perl -MPOSIX -le 'print strftime "%Y-%m-%d %T", localtime(1481122800)'
2016-12-08 00:00:00
$ python -c 'import datetime ; print (datetime.datetime.fromtimestamp(1481122800))'
2016-12-08 00:00:00

datetime strftime

Über.

Python ruft die Funktion strftime () der C-Bibliothek der Plattform auf, und ihre Implementierung variiert häufig von Plattform zu Plattform, sodass die insgesamt unterstützten Formatsymbole von Plattform zu Plattform variieren. In der Dokumentation zu strftime (3) finden Sie eine vollständige Ansicht der von der Plattform unterstützten Formatsymbole.

Quelle

Es gibt also einige Umgebungen, in denen% s oder% N nicht implementiert sind.

memo

import time
from datetime import datetime as dt
print (int(time.mktime(dt(2016,12,8,0,0,0).timetuple())))

Recommended Posts

Epoche in Python
Quadtree in Python --2
CURL in Python
Metaprogrammierung mit Python
Python 3.3 mit Anaconda
Geokodierung in Python
SendKeys in Python
Metaanalyse in Python
Unittest in Python
Zwietracht in Python
Deutsch in Python
DCI in Python
Quicksort in Python
nCr in Python
N-Gramm in Python
Programmieren mit Python
Plink in Python
Konstante in Python
FizzBuzz in Python
SQLite in Python
Schritt AIC in Python
LINE-Bot [0] in Python
CSV in Python
Reverse Assembler mit Python
Reflexion in Python
Konstante in Python
nCr in Python.
Format in Python
Scons in Python 3
Puyopuyo in Python
Python in Virtualenv
PPAP in Python
Quad-Tree in Python
Reflexion in Python
Chemie mit Python
Hashbar in Python
DirectLiNGAM in Python
LiNGAM in Python
In Python reduzieren
In Python flach drücken
Sortierte Liste in Python
Täglicher AtCoder # 36 mit Python
Clustertext in Python
AtCoder # 2 jeden Tag mit Python
Täglicher AtCoder # 32 in Python
Täglicher AtCoder # 6 in Python
Bearbeiten Sie Schriftarten in Python
Singleton-Muster in Python
Dateioperationen in Python
Lesen Sie DXF mit Python
Täglicher AtCoder # 53 in Python
Tastenanschlag in Python
Verwenden Sie config.ini mit Python
Täglicher AtCoder # 33 in Python
Löse ABC168D in Python
Logistische Verteilung in Python
Täglicher AtCoder # 7 in Python
Ein Liner in Python