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