From 4f3921233868edeaee9d48014b16ec1efccb1875 Mon Sep 17 00:00:00 2001 From: D Vengatesh <cb.en.u4cse16261@cb.students.amrita.edu> Date: Tue, 11 Dec 2018 23:00:02 +0530 Subject: [PATCH] ex2 q3 done --- CSE16261_Ex02_03.py | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 CSE16261_Ex02_03.py diff --git a/CSE16261_Ex02_03.py b/CSE16261_Ex02_03.py new file mode 100644 index 0000000..d900878 --- /dev/null +++ b/CSE16261_Ex02_03.py @@ -0,0 +1,3 @@ +s=input("Enter the string:") +s1=s[:2]+s[-2:] +print(s1) -- GitLab