Menu



Manage

Cord > Study_Python 전체 다운로드
Study_Python > methode1.py Lines 17 | 258 바이트
다운로드

                        # attr_test.py

class Test:
    def __init__(self):
        self.name = "김학교"
        addr = "주소"

        def func(self):
            self.level = 1

a = Test()
print(a.name)
# print(a.addr)
#print(a.level)

a.func()
print(a.level)