9 lines
229 B
Python
9 lines
229 B
Python
|
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
|