Computer Science, asked by sanvi146019, 6 days ago

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 AyushTex
0

Answer:

List = list()

for i in range (5):

name = input()

List.append(name)

print(List)

Similar questions