Skip to content

Instantly share code, notes, and snippets.

@aniruddha27
Created April 14, 2020 04:30
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save aniruddha27/dd1956d193c22ff367195e719f36f6e6 to your computer and use it in GitHub Desktop.
Save aniruddha27/dd1956d193c22ff367195e719f36f6e6 to your computer and use it in GitHub Desktop.
import sqlite3
# create new database
conn = sqlite3.connect('.\sql_db\Demo_table.db')
# create Cursor to execute queries
cur = conn.cursor()
print('Databse created.')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment