When you say [myTri.a, myTri.b, ...] you are not getting a list of the variables themselves, or references to them. Instead you get are getting just their values. Since you know they were initialized to 0, it is as if you had written [0, 0, 0, 0, 0, 0]. There's no difference.
Then later when you try to assign to sample[0], you are actually just overwriting the 0 that is stored in that array with a random value. Python knows nothing at all about myTri at that point; the connection is lost.
Here's what you can do to get the effect you're aiming for. First, pass a list of variable names we want to assign to later to random.sample:
sample = random.sample(["a", "b", "c", "d", "e", "f"], 3)
That'll give us back 3 random variable names. Now we want to assign to the variables with those same names. We can do that by using the special setattr function, which takes an object and a variable name and sets its value. For instance, setattr(myTri, "b", 72) does the same thing as myTri.b = 72. So rewritten we have:
setattr(myTri, sample[0], random.randint(1, 100))
setattr(myTri, sample[1], random.randint(1, 100))
setattr(myTri, sample[2], random.randint(1, 100))
The major concept here is that you're doing a bit of reflection, also known as introspection. You've got dynamic variable names--you don't know exactly who you're messing with--so you've got to consult with some more exotic, out of the way language constructs. Normally I'd actually caution against such tomfoolery, but this is a rare instance where introspection is a reasonable solution.
