From 16fe60bf3743b7e06cbb520a274a2615f2e68135 Mon Sep 17 00:00:00 2001 From: bothrasumit Date: Sun, 28 Oct 2018 01:12:26 +0530 Subject: [PATCH] add list.py --- list.py | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 list.py diff --git a/list.py b/list.py new file mode 100644 index 0000000..65b7cfa --- /dev/null +++ b/list.py @@ -0,0 +1,4 @@ +list=[1,2,'a',4] + +for i in range(len(list)): + print(i)