Python - Custom Exceptions
Find the mistake in this code that tries to add a custom attribute
weight to obj:class Item:
pass
obj = Item()
setattr(obj, weight, 50)
print(obj.weight)