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
- 배열
- 파이썬
- 사이킷런
- pandas
- Naive Bayes
- Titanic data set
- 파이썬 크롤링
- Python crawler
- 머신러닝
- ML
- dataframe
- 넘파이
- scikit-learn
- 순회 크롤러
- control statement
- 제어문
- NumPy
- 판다스
- 파이썬 크롤러
- KMeans Clustering
- sklearn
- Machine Learning
- python control statement
- K평균군집화
- 파이썬 제어문
- Data pre-processing
- python
- 타이타닉 데이터
- 파이썬 객체 지향 프로그래밍
- 나이브베이즈
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