Created
November 6, 2017 08:59
-
-
Save imtaehyun/e2b11e13cdf06fed4ec2684dab3bf039 to your computer and use it in GitHub Desktop.
python 몇주차인지 알수있는 방법
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import datetime | |
n = datetime.datetime.now() | |
n.isocalendar() | |
# (2017, 45, 1) | |
n = datetime.datetime(2017, 11, 5) | |
n.isocalendar() | |
# (2017, 44, 7) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment