Python中sqlite3 版本查看

python使用sqlite3模块集成了SQLite数据库,其中SQLite版本和sqlite3版本是不同的信息,用前心中有数还是有必要的。

···
import sqlite3
print(sqlite3.version_info) #显示sqlite3版本信息
print(sqlite3.sqlite_version) #显示SQLite版本信息

···
微信截图_20200624103941.png

你可能感兴趣的:(Python中sqlite3 版本查看)