Computer Science, asked by anushkachaudhary2160, 3 months ago

answer this question of computer​

Attachments:

Answers

Answered by Anonymous
9

#Creating list

list = ["Aryan", "Karan", "Sagar", "Arjun", "Naman"]

#Adding one more name in the list

list.append("Arnav")

#Removing first name from the list

list.pop(0)

Similar questions