diff --git a/.idea/inspectionProfiles/Project_Default.xml b/.idea/inspectionProfiles/Project_Default.xml
index 62d2967..1aad79f 100644
--- a/.idea/inspectionProfiles/Project_Default.xml
+++ b/.idea/inspectionProfiles/Project_Default.xml
@@ -72,6 +72,10 @@
+
+
+
+
diff --git a/.idea/workspace.xml b/.idea/workspace.xml
index dbabf97..530c665 100644
--- a/.idea/workspace.xml
+++ b/.idea/workspace.xml
@@ -2,12 +2,8 @@
-
-
-
-
-
-
+
+
@@ -18,75 +14,21 @@
-
+
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
-
+
-
-
+
+
@@ -114,16 +56,9 @@
@@ -147,16 +82,6 @@
-
-
-
-
-
-
-
-
-
-
@@ -200,7 +125,7 @@
-
+
@@ -223,48 +148,13 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
@@ -284,6 +174,9 @@
+
+
+
@@ -303,6 +196,9 @@
+
+
+
@@ -318,13 +214,51 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
@@ -342,6 +276,8 @@
+
+
@@ -349,8 +285,13 @@
-
+
+
+
+
+
+
@@ -358,11 +299,6 @@
-
-
-
-
-
@@ -417,85 +353,27 @@
-
+
+
-
-
-
-
-
-
-
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
-
+
+
+
+
+
+
+
+
diff --git a/challenges139-145/challenge-139.py b/challenges139-145/challenge-139.py
new file mode 100644
index 0000000..cb19e0c
--- /dev/null
+++ b/challenges139-145/challenge-139.py
@@ -0,0 +1,12 @@
+import sqlite3
+
+with sqlite3.connect('python-by-example') as db:
+ cursor = db.cursor()
+ cursor.execute("""CREATE TABLE IF NOT EXISTS employees(
+ id integer PRIMARY KEY,
+ name text NOT NULL,
+ dept text NOT NULL,
+ salary integer);""")
+ cursor.execute("""INSERT INTO employees(id,name,dept,salary)
+ VALUES("1","Bob","Sales","25000")""")
+ db.commit()
diff --git a/commands b/commands
new file mode 100644
index 0000000..a7decc9
--- /dev/null
+++ b/commands
@@ -0,0 +1,3 @@
+sudo apt-get install python3-tk
+sudo apt install sqlite
+