You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
import sqlite3conn=sqlite3.connect('tester.db')curs=conn.cursor()#curs.execute('''INSERT INTO hits values(date('now'),time('now'),'troller 3');''')conn.commit()for row in curs.execute('SELECT * FROM hits'): print(row)conn.close()