From 71f6a8e5ee9eb91e02843c5d7962ae50b6be9d29 Mon Sep 17 00:00:00 2001 From: Mudge13 <129602587+Mudge13@users.noreply.github.com> Date: Wed, 23 Aug 2023 14:53:51 +0530 Subject: [PATCH] ex1 solution to delete comma changed "\b" to "\b " to delete the ending comma --- Status/Day 1.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Status/Day 1.md b/Status/Day 1.md index 557714e..3b6ea53 100644 --- a/Status/Day 1.md +++ b/Status/Day 1.md @@ -33,7 +33,7 @@ print ','.join(l) for i in range(2000,3201): if i%7 == 0 and i%5!=0: print(i,end=',') -print("\b") +print("\b ") ``` ---