How do I get the day of week given a date?

前端 未结 26 1473
迷失自我
迷失自我 2020-11-22 04:40

I want to find out the following: given a date (datetime object), what is the corresponding day of the week?

For instance, Sunday is the first day, Mond

26条回答
  •  旧时难觅i
    2020-11-22 05:22

    A simple, straightforward and still not mentioned option:

    import datetime
    ...
    givenDateObj = datetime.date(2017, 10, 20)
    weekday      = givenDateObj.isocalendar()[2] # 5
    weeknumber   = givenDateObj.isocalendar()[1] # 42
    

提交回复
热议问题