You have several options, but most obvious are:
Using list comprehension with a condition:
result = [i for i in some_list if i.startswith('GFS01_')]
Using filter
(which returns iterator)
result = filter(lambda x: x.startswith('GFS01_'), some_list)