Django string to date format

后端 未结 3 1869
醉梦人生
醉梦人生 2020-12-25 11:36

I want to convert my string date to django date format. I tried a method. but did not work.

date = datetime.datetime.strptime(request.POST.get(\'date\'),\"         


        
3条回答
  •  南笙
    南笙 (楼主)
    2020-12-25 11:40

    It should be %Y-%m-%d:

    >>> s = "2014-04-07"
    >>> datetime.datetime.strptime(s, "%Y-%m-%d").date()
    datetime.date(2014, 4, 7)
    

    According to the documentation:

    • %Y stands for a year with century as a decimal number
    • %m - month as a zero-padded decimal number
    • %d - day of the month as a zero-padded decimal number

    Hope that helps.

提交回复
热议问题