Pythonで実行時の日付表示のためのやり方をいつも忘れるからメモる!

from datetime import datetime as dt
d= dt.today()
print d.strftime("%Y/%m/%d")

これだけ...