Answer:
lst=[True,False,True]
def remove_lies(a_list):
truth=[]
for i in range(len(a_list)):
if a_list[i]== False:
a_list[i]=True
return a_list
print(remove_lies(lst))
Step-by-step explanation:
Used other online resources to figure out this one. Was working on it myself and got stuck.