我正在尝试从python将日期时间写入MongoDB。
time_second = ('{0}-{1}-{2} {3}:{4}:{5}.{6}{7}'.format(t_year, t_month, t_day, t_hour, t_minute, t_second, t_ms, t_us))
date = datetime.strptime(time_second, "%Y-%m-%d %H:%M:%S.%f")
date_json = json.dumps(date)
我收到TypeError: