回答編集履歴
1
追記
test
CHANGED
@@ -3,3 +3,15 @@
|
|
3
3
|
|
4
4
|
|
5
5
|
上記を参考にすれば任意の場所の値を変更できます。
|
6
|
+
|
7
|
+
|
8
|
+
|
9
|
+
---
|
10
|
+
|
11
|
+
【追記】追加の質問に対する回答です。
|
12
|
+
|
13
|
+
```Python
|
14
|
+
|
15
|
+
df.loc[df['item_name'] == 'a', 'record_time'] = now.strftime(date_format)
|
16
|
+
|
17
|
+
```
|