From c4feb232005a28ddb653123c24112079fd3c9daf Mon Sep 17 00:00:00 2001 From: "V.S. Vasanthh" <162103447+vasanthh2010@users.noreply.github.com> Date: Tue, 14 Oct 2025 19:49:17 +0530 Subject: [PATCH] Add files via upload --- list.py | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 list.py diff --git a/list.py b/list.py new file mode 100644 index 0000000..0d2c29f --- /dev/null +++ b/list.py @@ -0,0 +1,5 @@ +a=(1,2,4,5,6,5) +for i in a : + if i%2 == 0: + print(i) + \ No newline at end of file