Capital One Interview Question

Create a database in memory

Interview Answer

Anonymous

Mar 16, 2023

Use SQLite in Python. ``` import sqlite3 as sl con = sl.connect('my-test.db') ```