for i i_temp:
temp = i.split(' ')
if len(temp) > 1:
for k in temp:
t = k.strip()
if (t not in f_list) and (t != ''):
f_list.append(t)
else:
if (i not in f_list) and (i != ''):
f_list.append(i)
return f_list