본문 바로가기
솔루션모음/파워 유저를 위한 파이썬 express 이론

[파워 유저를 위한 파이썬express] 8장 이론 연습문제 Exercise 솔루션 답지

by 이얏호이야호 2023. 1. 9.

1. 
class MyClass:
  self.data = 12

p = MyClass()
print(p.data)

3.
Good Morning


5.
class MyClass:
def __init__(self, r):
self.__radius = r

a = MyClass(10)
print(a.__radius) # private 필드는 접근할 수 없다. 

 

댓글