1# The insert() method inserts an element to the list
2# at a given index.
3# Syntax: list_name.insert(index, element)
4my_list = ["Add", "Answer"]
5my_list.insert(1, "Grepper")
6print (my_list)
7> ['Add', 'Grepper', 'Answer']
1# vowel list
2vowel = ['a', 'e', 'i', 'u']
3
4# 'o' is inserted at index 3
5# the position of 'o' will be 4th
6vowel.insert(3, 'o')
7
8print('Updated List:', vowel)
9# Updated List: ['a', 'e', 'i', 'o', 'u']