提问人:Faheem 提问时间:11/15/2023 最后编辑:BatelFaheem 更新时间:11/15/2023 访问量:34
使用 sqlite3 给我一个错误,说“sqlite3”未定义。我该如何解决这个问题?[关闭]
using sqlite3 is giving me an error, saying 'sqlite3' not defined. How can I solve this? [closed]
问:
我试图用 python 创建一个登录页面,但是当我尝试连接数据库的 sqlite3 时,它给了我一个错误,说 sqlite3 未定义。
import sql
import hashlib
conn=sqlite3.connect("userdata.db")
cur=conn.cursor()
cur.execute("""
CREATE TABLE IF NOT EXISTS userdata(
id INTEGER PRIMARY KEY,
username VARCHAR(255) NOT NULL,
password VARCHAR(255) NOT NULL
)
""")
##after Running this i get the error
conn=sqlite3.connect("userdata.db")
NameError: name 'sqlite3' is not defined
答: 暂无答案
评论
sqlite3
import sqlite3