Kizspy Question: 39
(Choose 1 answer)
Which of the following code snippets creates and connects to a new SQLite Database?
A. import sqlite3
connection sqlite3.connect("test_database.db")
B. import sqlite3
connection sqlite3.create("test_database.db")
C. from sqlite3 import Connection
connection = Connection("test_database.db")
D. import sql
connection = sql.connect("test_database.db")