프로그램 분류
파이썬기초48 : 클래스 사용의 기본
작성자 정보
- 관리자 작성
- 작성일
컨텐츠 정보
- 1,548 조회
- 0 추천
- 목록
본문
class Person:
Name = "James Park"
def PrintPerson(self):
print("My Name is {0}".format(self.Name))
p1 = Person()
p1.PrintPerson()
p1.Name = "Sungsoo Park"
p1.PrintPerson()
class Person:
name = "Default Name"
p1 = Person()
p2 = Person()
print(p1.name)
print(p2.name)
p1.name = "Sungsoo"
p2.name = "Sungjae"
print( p1.name)
print(p2.name)
Person.title = "New title"
print(p1.title)
print(p2.title)
print(Person.title)
p1.age = 30
print(p1.age)
Person.age = 30
print( p1.age)
print( p2.age)
print( Person.age)
p1.weight = 70
print(p1.weight)
"무단배포금지: 클라우드포털(www.linux.co.kr)의 모든 강좌는 저작권에 의해 보호되는 콘텐츠입니다. 무단으로 복제하여 배포하는 행위는 금지되어 있습니다."
관련자료
-
이전
-
다음
댓글 0
등록된 댓글이 없습니다.