I have a list with a strange structure as follows:
List_input = [['statment01'], ['statment02'], ['statment03'],.....['statement1000']]
I need to remove the inner brackets [] and the single notations of each item.
The required output list is like this:
List_output = ["statment01", "statment02", "statment03",....., "statement1000"]
Could anyone help with this?