Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> Python

จะเข้าถึงวัตถุ Python ภายในวัตถุใน Python ได้อย่างไร


วัตถุภายในวัตถุสามารถเข้าถึงได้ดังนี้

ตัวอย่าง

class P:
 def __init__(self):
   self.w = Q()

class Q:
 def __init__(self):
  self.list = [3,4,5]
 def function(self):
  self.list[2] = 7
y = P()
f = [y]
print f[0].w.function()
print f[0].w.list

ผลลัพธ์

ให้ผลลัพธ์เป็น

None
[3, 4, 7]