Python筆記

出自Tan Kian-ting的維基
跳至導覽 跳至搜尋

時間物件 datetime 和字串互轉

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