import sqlite3
con=sqlite3.connect('posted.db')
print('Opened database successfully')
cursor = con.cursor()
# cur.execute('''CREATE TABLE IF NOT EXISTS herbel
#(ID INT PRIMARY KEY NOT NULL,
#ch_name TEXT NOT NULL,
# age INT NOT NULL,
……
Python
人生苦短,我用Python。