a_list = [] a_list.append((1, 2)) # Succeed! Tuple (1, 2) is appended to a_list a_list.append(tuple(3, 4)) # Error message: ValueError: expecting Array or iterable