규도자 개발 블로그
[해커랭크(Hackerrank)/30 Days of Code/파이썬3(python3)] Day 13: Abstract Classes 본문
[해커랭크(Hackerrank)/30 Days of Code/파이썬3(python3)] Day 13: Abstract Classes
규도자 (gyudoza) 2019. 3. 26. 20:49Objective
Today, we're taking what we learned yesterday about Inheritance and extending it to Abstract Classes. Because this is a very specific Object-Oriented concept, submissions are limited to the few languages that use this construct. Check out the Tutorialtab for learning materials and an instructional video!
Task
Given a Book class and a Solution class, write a MyBook class that does the following:
- Inherits from Book
- Has a parameterized constructor taking these parameters:
- string
- string
- int
- Implements the Book class' abstract display() method so it prints these lines:
- , a space, and then the current instance's .
- , a space, and then the current instance's .
- , a space, and then the current instance's .
Note: Because these classes are being written in the same file, you must not use an access modifier (e.g.: ) when declaring MyBook or your code will not execute.
Input Format
You are not responsible for reading any input from stdin. The Solution class creates a Book object and calls the MyBook class constructor (passing it the necessary arguments). It then calls the display method on the Book object.
Output Format
The method should print and label the respective , , and of the MyBook object's instance (with each value on its own line) like so:
Title: $title
Author: $author
Price: $price
Note: The is prepended to variable names to indicate they are placeholders for variables.
Sample Input
The following input from stdin is handled by the locked stub code in your editor:
The Alchemist
Paulo Coelho
248
Sample Output
The following output is printed by your display() method:
Title: The Alchemist
Author: Paulo Coelho
Price: 248
풀이
#Write MyBook class
class MyBook(Book):
def __init__(self, title, author, price):
self.title = title
self.author = author
self.price = price
def display(self):
print('Title: ' + self.title)
print('Author: ' + self.author)
print('Price: ' + str(self.price))
설명
Book이라는 클래스를 상속받는 클래스를 만들 때 구현해야하는 추상함수 display를 구현하는 문제이다.
'알고리즘 > 풀이' 카테고리의 다른 글
[해커랭크(Hackerrank)/30 Days of Code/파이썬3(python3)] Day 15: Linked List (0) | 2019.03.27 |
---|---|
[해커랭크(Hackerrank)/30 Days of Code/파이썬3(python3)] Day 14: Scope (0) | 2019.03.26 |
[해커랭크(Hackerrank)/30 Days of Code/파이썬3(python3)] Day 12: Inheritance (0) | 2019.03.26 |
[해커랭크(Hackerrank)/30 Days of Code/파이썬3(python3)] Day 11: 2D Arrays (0) | 2019.03.22 |
[백준/9012/파이썬(python3)] 괄호 (0) | 2019.03.22 |