English
Aspik101 commited on
Commit
0e53f58
1 Parent(s): f291ad3

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +9 -0
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
  ```