回答編集履歴
1
月と日にちの部分を0埋めで二桁表示ができていなかったので、修正。
test
CHANGED
@@ -10,7 +10,9 @@
|
|
10
10
|
|
11
11
|
today = datetime.datetime.now()
|
12
12
|
|
13
|
+
#月と日をzfillで2桁表示に修正
|
14
|
+
|
13
|
-
alltoday=str(today.year)+str(today.month)+str(today.day)
|
15
|
+
alltoday=str(today.year).zfill(4)+str(today.month).zfill(2)+str(today.day).zfill(2)
|
14
16
|
|
15
17
|
url="https://i02.smp.ne.jp/u/mutb_img/"+str(alltoday)+".pdf"
|
16
18
|
|