D:\Baldwin\AA-School\PyProg>python Lists05.py
Create and print a list
[100, 200, 300, 400, 500]
Original length is:
5
Replace an element
Print the modified list
[100, 200, [2, 4, 8, 16, 32, 64], 400, 500]
Modified length is:
5

D:\Baldwin\AA-School\PyProg>
 

Figure 4