Tuple + Tuple?

An interesting trivial task is to concatenate two tuples in python. Let’s say we try this out: a = (‘dd’) b = (‘aa’,’bb’) print a+b Unfortunately likely we will get the following error: Traceback (most recent call last): File "test.py", line 20, in <module> print a+b TypeError: cannot concatenate ‘str’ and ‘tuple’ objects