From 53e6ce3e07f0ab22abc1b9766221e4cfbc4972db Mon Sep 17 00:00:00 2001 From: sharma313 <56875169+sharma313@users.noreply.github.com> Date: Tue, 22 Oct 2019 18:22:22 +0530 Subject: [PATCH] Update build.py --- build.py | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/build.py b/build.py index 7a4c3b9..44efe5e 100644 --- a/build.py +++ b/build.py @@ -1,2 +1,7 @@ def solution(list_of_nums): - """Enter Code Here""" \ No newline at end of file + """Enter Code Here""" + for x in list_of_nums: + if x%2==0: + print("Even") + else: + print("Odd")