i want to remove None values in this list
input= [(None, 'Ibrahimpatnam', 9440627084, None, 'Under Investigation'),
(None, 'Ibrahimpatnam', 9440627084, None, 'Under Investigation')]
and get an output like
['Ibrahimpatnam', 9440627084, 'Under Investigation', 'Ibrahimpatnam', 9440627084, 'Under Investigation']