In Python, is it possible to add new methods to built-in classes, such as Tuple. I'd like to add 2 new methods: first() returns the first element of a tuple, and second() returns a new tuple without the first element.
So for example:
x = (1, 2, 3)
x.first() # 1
x.second() # (2, 3)
Thanks