我在python中保存日期:
start_datetime = "24-08-2014,2.00"
start_datetime = datetime.strptime(start_datetime, '%d-%m-%Y,%H.%M')
它正在保存前一天的值和时间值也是错误的,因为当我试图检索它时说:
print start_datetime
datetime.datetime(2014, 8, 23, 20, 30, tzinfo=<UTC>)
有什么问题呢
谢谢,
我认为你应该使用timezone
util
from django.utils import timezone
current_date = timezone.now()