Answer:
Step-by-step explanation:
The following Python code does exactly as requested. Once the list is created and the elements are added to it, it uses a for loop to print out each element individually. Then once the loop is over it removes the 3 and False elements from the list and creates another for loop to print the remaining element(s) individually again.
my_list = []
my_list.append(3)
my_list.append("hello")
my_list.append(False)
for x in my_list:
print(x)
my_list.remove(3)
my_list.remove(False)
for x in my_list:
print(x)