Python has a Built-in Database — Here’s How to use it

How to utilize the built-in database for data storage and manipulation

Dario Radečić
Towards Data Science
6 min readOct 1, 2020

--

Databases are a great, secure, and reliable way to store data. All major relational databases have something in common — SQL — a language to manipulate databases, tables, and data. SQL is a broad topic to cover, especially when dealing with different database vendors, such as Microsoft, IBM, or Oracle, so let’s start with SQLite — the most lightweight database system.

--

--