From 8a2bc7c1df5ea5c1bc3abc57e2ba231de0170d41 Mon Sep 17 00:00:00 2001 From: bhawna1412 <68903942+bhawna1412@users.noreply.github.com> Date: Wed, 12 Aug 2020 16:39:45 +0530 Subject: [PATCH] Update assignment_02.py --- Section_01/assignment_02.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Section_01/assignment_02.py b/Section_01/assignment_02.py index 3dc49a2..ed7fe99 100644 --- a/Section_01/assignment_02.py +++ b/Section_01/assignment_02.py @@ -5,7 +5,7 @@ Write code to correct this: -print("We have {2} small boxes, {2} large boxes, {2} medium boxes".format(10,12,12)) +print("We have {0} small boxes, {1} large boxes, {2} medium boxes".format(10,12,12)) """