Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
31 |
Tags
- es6
- Python
- R
- 공정능력
- 보조정렬
- mybatis
- Eclipse
- GIT
- SSL
- NPM
- JavaScript
- tomcat
- window
- SPC
- Java
- mapreduce
- plugin
- Express
- MSSQL
- hadoop
- table
- Spring
- Kotlin
- Sqoop
- IntelliJ
- vaadin
- SQL
- xPlatform
- react
- Android
Archives
- Today
- Total
728x90
목록object (1)
DBILITY
python class
내부 메써드 작성할 때 argument로 self는 기본인가? __init__는 생성자, __del__은 소멸자겠지(?) ####################################################################################### class Avenger: def __init__(self, name="", role="", tribe=""): # initializer, constructor? self.name = name self.role = role self.tribe = tribe print(f'{self} initialization') def __del__(self): print(f'{self} Destructor called, {self} delete..
python
2021. 8. 19. 15:29
728x90