回答編集履歴
1
修正
test
CHANGED
@@ -4,6 +4,6 @@
|
|
4
4
|
|
5
5
|
```python
|
6
6
|
|
7
|
-
result = df[(df['date'].dt.year == today.year) & df['date'].dt.month == today.month) & df['date'].dt.day == today.day)]
|
7
|
+
result = df[(df['date'].dt.year == today.year) & (df['date'].dt.month == today.month) & (df['date'].dt.day == today.day)]
|
8
8
|
|
9
9
|
```
|