Kizspy | Question: 43 (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. query result set
B. a list of tube
C. a tuple
D. dict