On Feb 18, 4:53 pm, Gary Herron <[EMAIL PROTECTED]> wrote: > Brad wrote: > > Hi folks, > > > I'm still fairly new to programming in python and programming in > > general.
a = [1, 2, 3] b = a print a print b print a[0] = 100 print a print b --output:-- [1, 2, 3] [1, 2, 3] [100, 2, 3] [100, 2, 3] -- http://mail.python.org/mailman/listinfo/python-list