Supposing you want to filter out all the ones who have the value < 1.0, we can do something like this:
new_list = list(filter(lambda x: x['value']>=1.0, old_list)) # will contain all the values >= 1.0, considering old_list is the name of the list
adjust the comparing value 1.0
to the value you want