Buat tabel sqlite dalam python

import sqlite3
# it will create a databse with name sqlite.db
connection= sqlite3.connect('sqlite.db')   
Pythonist