Answer
[111, 3, 5, 7, 9]
[1, 3, 5, 7, 9]
Work Step by Step
Step 1:
Storing the range of elements in List1
list1 = list(range(1, 10, 2))
Step 2:
list2 = [ ] + list1
Step 3:
Storing 111 at list[0] index
list1[0] = 111
Step 4:
Printing the output on screen
print(list1)
print(list2)