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 |
Tags
- 부스트코스
- FLUTTER
- 상속
- pipenv
- 추상클래스
- 장고
- Python
- 강원도속초맛집
- c언어문자열
- DOM
- 노마드코더
- 남양주맛집
- 자바
- 코딩독학
- python3
- JavaScript
- 정렬알고리즘
- removetooltip
- popupmenubutton
- 가상환경
- BeautifulSoup
- 건대입구맛집
- 아스키코드
- 알고리즘
- 속초여행
- 성수동카페
- richtext
- 포인터
- Django
- 컴퓨터과학
Archives
- Today
- Total
목록__init__ (1)
YUYANE
Python / special method : __init__, __str__
학습 강의 www.udemy.com/course/python-and-django-full-stack-web-developer-bootcamp/ nomadcoders.co/python-for-beginners/lobby Special method class Car(): wheels = 4 doors = 4 windows = 4 seats = 4 print(dir(Car)) dir 함수를 출력해보면 파이썬에 이미 내장되어 있는 함수 목록들을 볼 수 있다. 오늘은 그 중에서 __init__과 __str__ 두 가지 함수를 살펴볼 것이다. __init__ class Cat(): def __init__(self,breed,name): self.breed = breed self.name = name mycat = ..
Programming Languages/PYTHON
2021. 1. 25. 16:25