How to print a date in a regular format?

后端 未结 22 3291
孤街浪徒
孤街浪徒 2020-11-21 23:00

This is my code:

import datetime
today = datetime.date.today()
print(today)

This prints: 2008-11-22 which is exactly what I wa

22条回答
  •  清歌不尽
    2020-11-21 23:28

    Since the print today returns what you want this means that the today object's __str__ function returns the string you are looking for.

    So you can do mylist.append(today.__str__()) as well.

提交回复
热议问题