Today stamp in python
tags: python Pythonで実行時の日付表示のためのやり方をいつも忘れるからメモる!
from datetime import datetime as dt
d= dt.today()
print d.strftime("%Y/%m/%d")
これだけ...
tags: python Pythonで実行時の日付表示のためのやり方をいつも忘れるからメモる!
from datetime import datetime as dt
d= dt.today()
print d.strftime("%Y/%m/%d")
これだけ...