Notice
Recent Posts
Recent Comments
Link
250x250
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- Flutter
- cos pro 1급
- AndroidStudio
- 코드품앗이
- codingtest
- issue
- 백준
- 분할정복
- docker
- 동적계획법
- DFS
- Algorithm
- 코테
- 안드로이드스튜디오
- 파이썬
- 개발
- cos
- vuejs
- C++
- 동적계획법과최단거리역추적
- 안드로이드
- 코딩테스트
- DFS와BFS
- django
- DART
- cos pro
- 알고리즘
- BAEKJOON
- Python
- android
Archives
- Today
- Total
목록cos 1급 5차 10번 python (1)
Development Artist

문제 유형 빈칸 난이도 easy Note 1. 파이썬의 Class, def, self. Code class Job: def __init__(self): self.salary = 0 def get_salary(self): return salary class PartTimeJob(Job): def __init__(self, work_hour, pay_per_hour): super().__init__() self.work_hour = work_hour self.pay_per_hour = pay_per_hour def get_salary(self): self.salary = self.work_hour * self.pay_per_hour if self.work_hour >= 40: self.salary += (s..
Algorithm/COS
2022. 2. 28. 17:24