While using element = t1,t2 this statement you are making tuples of the tuple. Example:-
>>> x=(3,4)
>>> y=(7,3)
>>> z=x,y
>>> z
((3, 4), (7, 3))
while calling for x in element: means x value will be t1 or t2 not elements of t1 and t2.
If x=t1 then calling if statement x in t1 and x in t2 will check if t1 is a element of t1 and also if t1 is a element of t2 which can't be possible because both are tuple not tuples of tuple. So your if statement will not be called. So print will never be executed.
Same will happen for x=t2
You can use Counter from collections for getting intersection like this:
>>> from collections import Counter
>>> a = Counter((1, 2, 3, 4, 4, 5, 5))
>>> b = Counter((4, 4, 5, 6, 7, 8))
>>> tuple(a & b)
(4,5)