From dde8395f01b185b45bd45027e1b8fecb631975af Mon Sep 17 00:00:00 2001 From: toronto19 <72243879+toronto19@users.noreply.github.com> Date: Fri, 2 Oct 2020 11:18:44 +0530 Subject: [PATCH] Update emaildb.py --- Week-2/Counting Email in a Database/emaildb.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Week-2/Counting Email in a Database/emaildb.py b/Week-2/Counting Email in a Database/emaildb.py index 2fca293..2805ddd 100644 --- a/Week-2/Counting Email in a Database/emaildb.py +++ b/Week-2/Counting Email in a Database/emaildb.py @@ -36,7 +36,7 @@ # https://www.sqlite.org/lang_select.html sqlstr = 'SELECT org, count FROM Counts ORDER BY count DESC LIMIT 10' -print + print "Counts:" for row in cur.execute(sqlstr) : print str(row[0]), row[1]