1
I have the following code:
Lista_1 = [10, 3, 6, 27, 'Maria']
Lista_2 = [37, 8, 45, 80, 'Jose']
Lista_3 = [43, 67, 99, 3.456, 'Pipoca']
Lista_4 = [432, 456, 333, 538, 'Bala']
Concatenating lists
Lista_Total = Lista_1 + Lista_2 + Lista_3 + Lista_4
[10, 3, 6, 27, 'Maria', 37, 8, 45, 80, 'Jose', 43, 67, 99, 3.456, 'Pipoca', 432, 456, 333, 538, 'Bala']
How could I remove only the str
of that concatenated list? Or order by type and remove them?