Skip to content Skip to sidebar Skip to footer
Showing posts with the label Operator Overloading

Why Can't I Add A Tuple To A List With The '+' Operator In Python?

Python not support adding a tuple to a list: >>> [1,2,3] + (4,5,6) Traceback (most recent … Read more Why Can't I Add A Tuple To A List With The '+' Operator In Python?