list.insert()
list.insert() is about talking to a database from Python. Pattern is always: connect → cursor → execute → fetch or commit → close.
For list.insert(): use ? placeholders (or the driver’s params). Never build SQL with + user text — that is injection. sqlite3 is in the stdlib for practice; MySQL/Mongo need a driver.
list.insert() on the board — insert Asha, select her back, print the name. Same idea on MySQL. Close the connection.
list.insert() — output — ['Asha', 'Ravi', 'Neha']. insert at index 1.
index → 0 1 2 list → [Asha, Ravi, Neha]
Steps in order: connect → execute → fetch/commit → close. Mention placeholders.