작성자 | 와이즈댄 | ||
---|---|---|---|
작성일 | 2020-08-06 11:38:44 KST | 조회 | 493 |
제목 |
파이썬 하시는 능력자 도와주실분!! ㅜ
|
제가 IT 관련 회사에서 강의 신청해서 온라인으로 강의 듣고 있는데..
단순 이론으로만 평가보면 되는줄 알았는데 뭔가 실습이 있더라구요.
문제가 이렇게 되어 있던데 어렵지는 않은듯 싶은데 애초에 언어 자체를 전혀 모르다보니 멘붕이 와서..ㅜ
이럴줄 알았으면 단순 이론 말고 실습도 같이 신청을 하는 것인데 뭔가 신청을 잘못 한듯;;
아래에는 자동차의 특징을 간략히 보여주는 Car 클래스와, 이로부터 상속 받아 Sedan 클래스를 만드는 코드가 작성돼 있다.
코드의 빈칸을 완성하라
ㅇ Car 클래스정의
class Car:
def __init__( ___, name, weight, size, cylinder): #......문1) 10점
self.name= name
self.weight = weight
self.size= size
self.cylinder= cylinder
def showspec( ___ ): #......문2) 10점
print('\n이 름: {}'.format(self.name))
print('무 게: {}t'.format(self.weight))
print('길 이: {}m'.format(self.size))
print('배기량: {}cc'.format(self.cylinder))
ㅇ Car로부터 상속받는 Sedan클래스정의
class Sedan( ___ ): #......문3) 20점
def __init__ ( ____ , name, weight, size, cylinder, color ): #......문4) 10점
super().__init__(name, weight, size, cylinder)
self.color= color
def showspec( ___ ): #......문5) 10점
_____.showspec() #......문6) 20점
print('색 상: {}'.format(_______)) #......문7) 20점
|
||
|
© PlayXP Inc. All Rights Reserved.