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]