I try to learn SQL and I do that with Python 3.2. I know that SQLite3 module is installed with Python, but when I try to do this code:
import sqlite3
conn = sqlite3.connect('example.db')
I got this error: Undefined variable from import: connect
I have checked In usr/lib and the .so file is there..
What can I do to solve that ?
Regards,