Create a list of 5 student names. Write a program in Python to:
a. Add an element “Riya” in the given list at 4th index location.
b. Delete the element at index 2 from the list.
Answers
Answered by
0
Answer:
List = list()
for i in range (5):
name = input()
List.append(name)
print(List)
Similar questions