37 Answer
(Choose 1 answer)
What is the type of the results variable in the following code snippet?import sqlite3 connection = sqlite3.connection("people.db")cursor = connection.cursor()cursor.execute("SELECT * FROM People")results = cursor.fetchall()
A. querySet
B. list
C. tuple
D. dict