UPDATE and DELETE – SQLite3 with Python 3 | Lecture 18 by Yogesh | Oct 11, 2017 | Python Tutorial | 0 commentsSource Codeimport sqlite3 db = sqlite3.connect('ganesha.db') cursor = db.cursor() id1=2 name1 = 'AAA' # cursor.execute('update info3 set name = ? where id = ?',(name1,id1)) cursor.execute('delete from info3 where id = ?',(id1,)) db.commit() Submit a Comment Cancel replyYour email address will not be published. Required fields are marked *Comment *Name * Email * Website Save my name, email, and website in this browser for the next time I comment. Current ye@r * Leave this field empty Δ