Skip to content

Instantly share code, notes, and snippets.

@aniruddha27
Last active April 25, 2020 10:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save aniruddha27/a9f7edfb1c14b25d83811a572ce9270a to your computer and use it in GitHub Desktop.
Save aniruddha27/a9f7edfb1c14b25d83811a572ce9270a to your computer and use it in GitHub Desktop.
d1 = datetime.now()
# week starts from 0
print(d1.weekday()) # output 3 for Thurday
# week starts with 1
print(d1.isoweekday()) # output 4 in ISO format
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment