Object Attribute in Random List Not Accessible in Python - Stack Overflow most recent 30 from stackoverflow.com 2009-12-12T00:18:49Z http://stackoverflow.com/feeds/question/1066827 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1066827/object-attribute-in-random-list-not-accessible-in-python 1 Object Attribute in Random List Not Accessible in Python Noah Clark 2009-07-01T00:57:37Z 2009-07-01T02:06:44Z <p>Hello.</p> <p>I'm working on my first object oriented bit of python and I have the following:</p> <pre><code>#!/usr/bin/python import random class triangle: # Angle A To Angle C Connects Side F # Angle C to Angle B Connects Side D # Angle B to Angle A Connects Side E def __init__(self, a, b, c, d, e, f): self.a = a self.b = b self.c = c self.d = d self.e = e self.f = f #def solver: #pass #initialize Triangle myTri = triangle(0,0,0,0,0,0) #Pick Three Random Angles or Sides to Generate Values For sample = random.sample([myTri.a, myTri.b, myTri.c, myTri.d, myTri.e, myTri.f], 3) #Sets the three randomly picked variables to a Random Number sample[0] = random.randint(1, 100) sample[1] = random.randint(1, 100) sample[2] = random.randint(1, 100) </code></pre> <p>How do I pass myTri.a, for example to random.randint. It is passing the value of '0' which it initialized. I want to be able to assign a random value to three of the .a-.f attributes of myTri. What am I missing?</p> http://stackoverflow.com/questions/1066827/object-attribute-in-random-list-not-accessible-in-python/1066871#1066871 1 Answer by Roger Pate for Object Attribute in Random List Not Accessible in Python Roger Pate 2009-07-01T01:17:32Z 2009-07-01T01:17:32Z <p>To assign to <code>a</code>, <code>b</code>, and <code>c</code>:</p> <pre><code>myTri.a = random.randint(1, 100) myTri.b = random.randint(1, 100) myTri.c = random.randint(1, 100) </code></pre> <p>To assign to one random attribute from <code>a</code>-<code>f</code>:</p> <pre><code>attrs = ['a', 'b', 'c', 'd', 'e', 'f'] setattr(myTri, random.choice(attrs), random.randint(1, 100)) </code></pre> <p>To assign to three random attributes from <code>a</code>-<code>f</code>:</p> <pre><code>attrs = ['a', 'b', 'c', 'd', 'e', 'f'] for attr in random.sample(attrs, 3): setattr(myTri, attr, random.randint(1, 100)) </code></pre> http://stackoverflow.com/questions/1066827/object-attribute-in-random-list-not-accessible-in-python/1066873#1066873 5 Answer by John Kugelman for Object Attribute in Random List Not Accessible in Python John Kugelman 2009-07-01T01:18:40Z 2009-07-01T01:25:29Z <p>When you say <code>[myTri.a, myTri.b, ...]</code> you are not getting a list of the variables themselves, or references to them. Instead you are getting just their values. Since you know they were initialized to <code>0</code>, it is as if you had written <code>[0, 0, 0, 0, 0, 0]</code>. There's no difference.</p> <p>Then later when you try to assign to <code>sample[0]</code>, you are actually just overwriting the 0 that is stored in that array with a random value. Python knows nothing at all about <code>myTri</code> at that point; the connection is lost.</p> <p>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 <code>random.sample</code>:</p> <pre><code>sample = random.sample(["a", "b", "c", "d", "e", "f"], 3) </code></pre> <p>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 <code>setattr</code> function, which takes an object and a variable name and sets its value. For instance, <code>setattr(myTri, "b", 72)</code> does the same thing as <code>myTri.b = 72</code>. So rewritten we have:</p> <pre><code>setattr(myTri, sample[0], random.randint(1, 100)) setattr(myTri, sample[1], random.randint(1, 100)) setattr(myTri, sample[2], random.randint(1, 100)) </code></pre> <p>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.</p> http://stackoverflow.com/questions/1066827/object-attribute-in-random-list-not-accessible-in-python/1066982#1066982 1 Answer by John Machin for Object Attribute in Random List Not Accessible in Python John Machin 2009-07-01T02:06:44Z 2009-07-01T02:06:44Z <p>Alternative to using setattr: do it when you create a Triangle instance.</p> <pre><code>args = [random.randint(1, 100) for i in xrange(3)] + [0, 0, 0] random.shuffle(args) my_tri = Triangle(*args) </code></pre>