Write a program to create a list with 1-10
numbers. Add 5 more numbers and delete the 4th
element.
Answers
Answered by
0
Answer:
In Python:
numList = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]
for i in range(5):
numList.append(1)
numList.remove[4]
please mark me as the brainliest!
Similar questions
India Languages,
3 months ago
Math,
3 months ago
Math,
3 months ago
Science,
7 months ago
Math,
7 months ago