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) + +