回答編集履歴
1
追記
answer
CHANGED
|
@@ -6,4 +6,11 @@
|
|
|
6
6
|
|
|
7
7
|
```Python
|
|
8
8
|
print(time.year, time.month, time.day) # 2018 6 28
|
|
9
|
+
```
|
|
10
|
+
|
|
11
|
+
あるいは
|
|
12
|
+
```Python
|
|
13
|
+
print(
|
|
14
|
+
time.strftime("%Y %m %d") # 2018 6 28
|
|
15
|
+
)
|
|
9
16
|
```
|