From 75f839ac43fde79ed6253cd6c43c81dda5a514f0 Mon Sep 17 00:00:00 2001 From: bhawna1412 <68903942+bhawna1412@users.noreply.github.com> Date: Wed, 12 Aug 2020 16:51:37 +0530 Subject: [PATCH] Update assignment_03.py --- Section_01/assignment_03.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Section_01/assignment_03.py b/Section_01/assignment_03.py index 637873b..6986153 100644 --- a/Section_01/assignment_03.py +++ b/Section_01/assignment_03.py @@ -22,6 +22,12 @@ # Your code below: +char= "[[]]" +word= "Cool" +result= char[:2] + word + char[2:4] +print(result) + +