📜  pandas 中的时间日期到 csv 文件 - Python 代码示例

📅  最后修改于: 2022-03-11 14:45:44.487000             🧑  作者: Mango

代码示例1
try:
    df.to_csv(
             path_to_csv + f'\{file_name}_{now.strftime("%Y-%m-%d")}_to_{now.strftime("%H.%M")}.csv',
             date_format='%Y-%m-%d %H:%M:%S', encoding='utf-8', index=False)
except OSError as e:
             print("Failed to create the file.......")
             raise SystemExit(e)