D:\Baldwin\AA-School\PyProg>python
Lists03.py
Create and print a list [3.14, 59, 'A string', 1024] Modify the list Print the modified list [3.14, 59, 'New string', 1024] Modify the list again Print the modified list [3.14, 59, 'New string', 2048] Modify the list again Print the modified list [3.14, 59, 0.99999, 2048] D:\Baldwin\AA-School\PyProg> Figure 12 |