#Floats: 1.0 + 3.0 #Integer 1 + 3 #Float + Integer 1.0 + 3 'a' + 'b' True + False True + True False + False #Tuples a = (1, 2, 3, 4) b = ('a', 'b', 'c') a+b #Lists a = [1, 2, 3, 4] b = [5, 6, 7, 8] a+b #Dictionaries a = {'one': 1, 'two': 2, 'three': 3} b = {'four': 4, 'five': 5} a+b #Sets a = set([1, 2, 3, 4]) b = set([4, 5, 6, 7]) a+b