You can use it directly in a for loop without assigning it to a variable. If a function returns an iterable (list, dict, set).
for var in my_func():
# do stuff with var
In your case:
for benefit in list_benefits():
# do stuff with benefit