I have the list that contains some items like:
\"GFS01_06-13-2017 05-10-18-38.csv\" \"Metadata_GFS01_06-13-2017 05-10-18-38.csv\"
How to fi
You should try something like this :
[item for item in my_list if item.startswith('GFS01_')]
where "my_list" is your list of items.