回答編集履歴

1

修正

2021/07/30 07:24

投稿

meg_
meg_

スコア10582

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
  ```