#
File Lists03.py
# Rev 2/4/00 # Copyright 2000, R. G. Baldwin # Illustrates mutating lists # #------------------------------- print "Create and print a list" listA = [3.14,59,"A string", 1024] print listA print "Modify the list"
print "Modify the list
again"
print "Modify the list
again"
Figure 11 |