diff --git a/exercises/3-create-a-db-from-csv/README.md b/exercises/3-create-a-db-from-csv/README.md index 562dae9..60d5eae 100644 --- a/exercises/3-create-a-db-from-csv/README.md +++ b/exercises/3-create-a-db-from-csv/README.md @@ -34,10 +34,6 @@ c.execute("INSERT INTO users(name, account, balance) VALUES(?,?,?)", (name, acco ``` **Note: ** You must specify the columns names otherwise sqlite3 will default to all columns. -```py - -``` - Sandbox! dir() and help() the cursor for all the methods possible. What does executemany do?