Suppose I want to add a method to one of python's main objects, like a normalize method to the tuple. To be specific, I want all tuples I declare in my file to have this method, like this:
foo = (3,4,5)
print(foo.normalize())
Is there any way I can do this for just the file I'm working in, like re-define the tuple class or something?