CSVに下記のリストが用意されています
item_name, contents1, contents2, contents3, contents4, record_time
a , , , , , 2020-05-15 12:34:33
b , , , , , 2020-05-15 12:34:33
c , , , , , 2020-05-15 12:34:33
d , , , , , 2020-05-15 12:34:33
e , , , , , 2020-05-15 12:34:33
このリストについて、
このリストを読み込み、aに対する処理が終わったら、record_timeの時間を現在時刻に変更したいです。
尚、a以外のrecord_timeはそのまま変更したくありません。
b,c,d,eの処理でも同様のことを行いたいと考えています。
試したこと
if args.file.name == 'app/configini.csv': rows = csv.reader(args.file) header = next(rows) for row in rows: now = datetime.now() date_format = '%Y-%m-%d %H:%M:%S' if row[15] is not None or 0 < len(row[15]): old = datetime.strptime(row[15], date_format) diff = now - old if 180 > diff.seconds: continue else: log.logging.error(traceback.format_exc()) fileName = args.file.name df = pd.read_csv(fileName) df.iat[0, 5] = now.strftime(date_format) df.to_csv(fileName, index=False)
このように記載すると、何故かコンテンツの一部の値が下記のように書き換えられてしまいました。
4902370545302 → 4902370545302.0
また、"作業に要した行の時間のみ"を変更するという処理をどのようにすればいいのか思いつきません・・。
#補足情報(FW/ツールのバージョンなど)
Windows 10
Python3.8.2
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/05/14 11:29
2020/05/14 11:37
2020/05/14 12:15