Chris I take good notice of your comments and suggestions. Thanks.
--
http://mail.python.org/mailman/listinfo/python-list
Thanks MRAB and Peter Otten that solved the problem.
--
http://mail.python.org/mailman/listinfo/python-list
Hello.
I am putting objects (test) into a container object (tests) and the
test object is also a container for a another list of object
(scores).
Problem is that all instances of class tests have the same value.
To illustrate:
class score(object):
val = 0
def __init__(self, val):