Computer Science, asked by Kroni, 1 month ago

what is the purpose of insert() function in Python? Write its syntax​

Answers

Answered by sanjeevchandrupc
1

Answer:

The Insert function is a built-in list method that allows you to insert items or objects at any position in a sequence. It's a list-only method. The arguments are “index” and “element” where index is the position of the item needs to get inserted, and the “element” is the element given by the user.

Similar questions