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
- KMeans Clustering
- ML
- pandas
- 파이썬
- 머신러닝
- 사이킷런
- 파이썬 객체 지향 프로그래밍
- NumPy
- control statement
- python control statement
- 순회 크롤러
- 배열
- Data pre-processing
- python
- Titanic data set
- Python crawler
- K평균군집화
- scikit-learn
- 판다스
- 넘파이
- 파이썬 크롤링
- dataframe
- 파이썬 제어문
- 파이썬 크롤러
- Machine Learning
- 타이타닉 데이터
- 나이브베이즈
- Naive Bayes
- sklearn
- 제어문
Archives
- Today
- Total
목록Python OOP (1)
Try to 개발자 EthanJ의 성장 로그
Python OOP Inheritance and Overriding 파이썬 객체 지향 프로그래밍 상속과 오버라이딩
Python OOP Inheritance and Overriding 파이썬 객체 지향 프로그래밍 상속과 오버라이딩 1. 상속 : 부모 class의 정보를 활용해 자식 class를 생성하는 것 문법 class [class 이름](부모 class): ... 상속 시 부모 class의 item(variable, method)을 자식 class에 물려준다. 상속은 자식 class 선언 시 부모 class명을 지목해서 실행된다 자식 class는 새로운 변수, method를 선언 해 사용할 수 있다. class Person: name = "" age = 0 height = 0 def get_info(self): print("이름 : %s, 나이 : %s살, 키 : %scm" %(self.name, self.age,..
CS & DS/Basic Python with Data Crawling
2022. 10. 18. 19:11