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 | 31 |
Tags
- 코드품앗이
- 분할정복
- vuejs
- 알고리즘
- 안드로이드스튜디오
- 코테
- C++
- DART
- 동적계획법
- 개발
- django
- Python
- cos
- 파이썬
- 안드로이드
- 백준
- issue
- Flutter
- cos pro
- 코딩테스트
- codingtest
- AndroidStudio
- DFS
- cos pro 1급
- 동적계획법과최단거리역추적
- Algorithm
- BAEKJOON
- Vue
- DFS와BFS
- android
Archives
- Today
- Total
목록cos pro 1급 음식전문점 운영 python (1)
Development Artist
[COS Pro 1급, Python] 1차 1번 : 음식전문점 운영
문제 유형 빈칸 난이도 easy Note 1. 파이썬에서 Class와 def를 어떻게 정의하는지. 2. self의 용도가 무엇인지. Code # -*- coding: utf-8 -*- # UTF-8 encoding when using korean from abc import * class DeliveryStore(metaclass=ABCMeta): @abstractmethod def set_order_list(self, order_list): pass @abstractmethod def get_total_price(self): pass class Food: def __init__(self, name, price): self.name = name self.price = price class PizzaSto..
Algorithm/COS
2022. 2. 24. 17:00