Update README.md
Browse files
README.md
CHANGED
|
@@ -70,4 +70,13 @@ get_answer("Write a function that read csv by pandas")
|
|
| 70 |
Generating...
|
| 71 |
def read_csv(file):
|
| 72 |
df = pd.read_csv('data/test.csv')
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 73 |
```
|
|
|
|
| 70 |
Generating...
|
| 71 |
def read_csv(file):
|
| 72 |
df = pd.read_csv('data/test.csv')
|
| 73 |
+
|
| 74 |
+
|
| 75 |
+
|
| 76 |
+
get_answer("Write a function that check if number is even")
|
| 77 |
+
|
| 78 |
+
Generating...
|
| 79 |
+
def is_even(n):
|
| 80 |
+
return n %2 ==0
|
| 81 |
+
|
| 82 |
```
|