在Python 3.6的datetime
模块中打印日期时,它们看起来像:
>> from datetime.date import date
>> print(date(2018,1,30))
2018-01-30
是否可以为print()
个对象更改datetime.date
的输出格式?
我想要的结果是:
>> print(date(2018,1,30))
30/01/18
答案 0 :(得分:2)
您可以使用datetime
格式设置功能-strftime
-接受格式字符串described in detail here。
您可能还想从以下答案中查看高级日期格式:How to print a date in a regular format?