(46)Answer
(Choose 1 answer)
In the following Python code sequence (assuming cur is a SQLite cursor object),cur.execute('SELECT count FROM Counts WHERE org = ?', (org, ))row = cur.fetchone()
what is the value in row if no rows match the WHERE clause?
A. An empty dictionary
B. An empty list
C. -1
D. None