Why do Datastore datetimes look different in appengine console vs appengine dashboard?
问题 I have a very simple NDB model for which I'm entering Date-of-Birth for a user: class Contact(ndb.Model): first_name= ndb.StringProperty() last_name= ndb.StringProperty() dob = ndb.DateTimeProperty() contact1_dob = datetime.strptime('12/17/1989', "%m/%d/%Y").date() contact1 = Contact(first_name='Homer', last_name='Simpson', dob=contact1_dob ) contact1_result = contact1.put() Loading into the datastore works fine, and when I look at the data via the Google Appengine dashboard https://appengine