मैं एक पायथन स्क्रिप्ट बनाने की कोशिश कर रहा हूं जो कई डेटाबेस खोलती है और उनकी सामग्री की तुलना करती है। उस स्क्रिप्ट को बनाने की प्रक्रिया में, मैं एक सूची बनाने में समस्या में चला गया हूं जिसकी सामग्री ऐसी वस्तुएं हैं जिन्हें मैंने बनाया है।
मैंने इस पोस्टिंग के लिए इसकी नंगे हड्डियों के लिए कार्यक्रम को सरल बनाया है। पहले मैं एक नया वर्ग बनाता हूं, इसका एक नया उदाहरण बनाता हूं, इसे एक विशेषता प्रदान करता हूं और फिर इसे एक सूची में लिखता हूं। फिर मैं उदाहरण के लिए एक नया मान प्रदान करता हूं और फिर से इसे एक सूची में लिखता हूं ... और फिर और फिर ...
समस्या यह है, यह हमेशा एक ही वस्तु है इसलिए मैं वास्तव में बस आधार वस्तु बदल रहा हूं। जब मैं सूची को पढ़ता हूं, तो मुझे एक ही वस्तु का बार-बार दोहराव मिलता है।
तो आप एक लूप के भीतर वस्तुओं को सूची में कैसे लिखते हैं?
यहाँ मेरा सरलीकृत कोड है
class SimpleClass(object):
pass
x = SimpleClass
# Then create an empty list
simpleList = []
#Then loop through from 0 to 3 adding an attribute to the instance 'x' of SimpleClass
for count in range(0,4):
# each iteration creates a slightly different attribute value, and then prints it to
# prove that step is working
# but the problem is, I'm always updating a reference to 'x' and what I want to add to
# simplelist is a new instance of x that contains the updated attribute
x.attr1= '*Bob* '* count
print "Loop Count: %s Attribute Value %s" % (count, x.attr1)
simpleList.append(x)
print '-'*20
# And here I print out each instance of the object stored in the list 'simpleList'
# and the problem surfaces. Every element of 'simpleList' contains the same attribute value
y = SimpleClass
print "Reading the attributes from the objects in the list"
for count in range(0,4):
y = simpleList[count]
print y.attr1
तो मैं कैसे (अपील, विस्तार, नकल या जो भी) simpleList के तत्वों को शामिल करता हूं ताकि प्रत्येक प्रविष्टि में एक ही इंगित करने के बजाय ऑब्जेक्ट का एक अलग उदाहरण हो?