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]