Basic Python script
#!/usr/bin/python
class cat:
	def __init__(self, hair, name, weight):
		self.hair = hair
		self.name = name
		self.weight = weight
	def purr(self, volume):
		return volume * self.weight

if __name__ == '__main__':
	spook = cat('black', 'Spook', 3.2)
	print spook.purr(3)