해결된 질문
20.01.31 00:52 작성
·
200
0
'texts.insert_coin' , 'texts.title' 코드를 보면 상속을 받지 않고서도 coffeeVM class 에서 texts 클래스의 속성이나 메소드를 사용할 수 있는 것 같은데 어떻게 가능한지 이해가 안갑니다 설명 부탁드립니다 ㅠㅠ
class texts:
title = "#### 클래스 %s 자판기 입니다. ####"
product = "%s:%s(%s원)"
insert_coin = "동전을 넣어 주세요. : "
n_enough_coin = "동전이 부족합니다.\n거스름돈은 %s원 입니다."
select_product = "원하시는 상품번호를 선택하세요."
select_fault = "잘 못 누르셨습니다."
product_out = "선택하신 %s 입니다. 거스름돈은 %s원 입니다.\n감사합니다."
class CoffeeVM(Product):
_name = "커피"
def __init__(self):
# 사용자가 자판기 종류를 선택하면 _name 출력한다.
# instance 생성하면 자판기 종류에 따라 texts.title %self._name 출력
print( texts.title %self._name)
def run(self):
while True:
try:
inputCoin = float(input(texts.insert_coin))
except ValueError:
# 잘못된 값을 입력받으면 에러 메시지를 출력한다.
print(texts.select_fault)