From e806ea4c025fa4dd88ea52f6cf8caedbaa8abb77 Mon Sep 17 00:00:00 2001 From: vdnvsivakumar <49924550+vdnvsivakumar@users.noreply.github.com> Date: Sun, 13 Sep 2020 03:35:04 +0530 Subject: [PATCH] Update assignment_05.py --- Section_01/assignment_05.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Section_01/assignment_05.py b/Section_01/assignment_05.py index d672da4..07dc2cf 100644 --- a/Section_01/assignment_05.py +++ b/Section_01/assignment_05.py @@ -23,8 +23,9 @@ # Your code below: - - +l1 = len(chars) +w1=chars[:l1//2]+word+chars[l1//2:] +print(w1)