class Vending: # 自动贩售机 goodsname = ['A1', 'A2', 'A3', 'A4', 'A5', 'A6'] price = [2, 3, 4, 5, 8, 6] par = [1, 2, 5, 10] def __init__(self, x1, x2): ''' :param x1: 货物数量 :param x2: 钱箱各种面额张数 ''' self.goods = list(map(int, x1.split('-'))) ...