class Litter: types = ['PAPER', 'GLASS', 'PLASTIC', 'METAL', 'BIO', 'MUNICIPAL', 'ELECTRONICS'] def __init__(self, type, volume, mass): self.type = type self.volume = volume self.mass = mass