I did create a class.
class Type:
p = []
r = []
s = []
Then, in the main I use it 3 times. The first one :
Short = Type()
then I use the list to append some data in it. The second time I declare it
Avreage = Type()
But.. at that moment, evrey data that is in Short jump into Average. Like if when a right Short.p[0] = 2
, it write it in the class itself.. What do I have to do to solve this ?