回答編集履歴
2
修正
test
CHANGED
@@ -47,3 +47,29 @@
|
|
47
47
|
|
48
48
|
|
49
49
|
```
|
50
|
+
|
51
|
+
|
52
|
+
|
53
|
+
----
|
54
|
+
|
55
|
+
|
56
|
+
|
57
|
+
ちなみに pandas を使うのであれば、このようなことをしなくても以下のように日本時間にできます。
|
58
|
+
|
59
|
+
|
60
|
+
|
61
|
+
```python
|
62
|
+
|
63
|
+
import pandas as pd
|
64
|
+
|
65
|
+
|
66
|
+
|
67
|
+
exec_date = "2021-01-05T12:06:01.000Z"
|
68
|
+
|
69
|
+
|
70
|
+
|
71
|
+
time_jp = pd.Timestamp(exec_date).tz_convert("Asia/Tokyo")
|
72
|
+
|
73
|
+
print(time_jp)
|
74
|
+
|
75
|
+
```
|
1
修正
test
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
|
3
3
|
|
4
4
|
|
5
|
-
`exec_date` は日付を表すただの文字列なので、これをスライスで分解し、int 型に変換したのち、`datetime.datetime
|
5
|
+
`exec_date` は日付を表すただの文字列なので、これをスライスで分解し、int 型に変換したのち、`datetime.datetime` のコンストラクタ引数に渡して、datetime.datetime オブジェクトを作成しています。
|
6
6
|
|
7
7
|
|
8
8
|
|