Skip to content

Instantly share code, notes, and snippets.

@kurozumi
Last active April 14, 2016 10:44
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Embed
What would you like to do?
【Python】明日の日付を取得する方法
# coding: utf-8
import datetime
tomorrow = datetime.date.today() + datetime.timedelta(days=1)
tomorrow.strftime("%Y/%m/%d")
print tomorrow
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment