Capital One interview question

Create a database in memory

Interview Answer

Anonymous

16 Mar 2023

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