Notice
Recent Posts
Recent Comments
Link
- Arawn's Dev Blog
- Outsider's Dev Story
- Toby's Epril
- Benelog
- NHN 개발자 블로그
- SK 플래닛 기술 블로그
- OLC CENTER
- 소프트웨어 경영/공학 블로그
- 모바일 컨버전스
- KOSR - Korea Operating System …
- 넥스트리 블로그
- 리버스코어 ReverseCore
- SLiPP
- 개발자를 위하여... (Nextree 임병인 수석)
- "트위터 부트스트랩: 디자이너도 놀라워할 매끈하고 직관…
- Learning English - The English…
- real-english.com
- 'DataScience/Deep Learning' 카테…
- Deep Learning Summer School, M…
- Deep Learning Courses
민서네집
[python] type 명령으로 class 선언하기 본문
def __init__(self, name):
self.name=name
Person = type('Person',(object,),{"__init__":__init__})
p = Person("Jerry")
print(p.__dict__)
print(type(p))
print(Person.__class__)
<결과값>
{'name': 'Jerry'}
<class '__main__.Person'>
<class 'type'>
p의 type 값이 깔끔하게 class 'Person' 으로 나오지 않네요. 이유가 뭘까요??
'Python' 카테고리의 다른 글
Docker 환경에서 %matplotlib qt 가 에러남. (0) | 2016.09.07 |
---|---|
[레이지앱스] [django] [React.Js] (0) | 2016.08.28 |
[python] 메서드 소스를 보고 싶을 때 (inspect 모듈 사용) / 바이트 코드 보기 (0) | 2016.08.28 |
Problem Solving with Algorithms and Data Structures using Python (0) | 2016.08.27 |
[밑바닥부터 시작하는 데이터 사이언스] (0) | 2016.08.27 |
Comments