vowels = ['a', 'e', 'i', 'u']
vowels.insert(3, 'o')
print('English vowels:', vowels)
# Output: List: ['a', 'e', 'i', 'o', 'u']
# Python program to demonstrate
# Addition of elements in a List
# Creating a List
List = [1,2,3,4]
print("Initial List: ")
print(List)
# Addition of Element at
# specific Position
# (using Insert Method)
List.insert(0, 0)
List.insert(5, 'Softhunt.net')
print("
List after performing Insert Operation: ")
print(List)