Python筆記

時間物件 datetime 和字串互轉

  • 字串→時間物件:obj = datetime.strptime(datetime_str, '%m/%d/%y %H:%M:%S')
  • 時間物件→字串:strin = datetime.strftime(datetime_obj, '%m/%d/%y %H:%M:%S')